mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
Fix game pausing/unpausing
This commit is contained in:
parent
f17f984721
commit
650bc0c1f2
1 changed files with 4 additions and 1 deletions
|
@ -230,7 +230,10 @@ u64 audio_ringbuffer::update()
|
||||||
else if (emu_paused)
|
else if (emu_paused)
|
||||||
{
|
{
|
||||||
// Emulator unpaused
|
// Emulator unpaused
|
||||||
play();
|
if (has_capability(AudioBackend::PLAY_PAUSE_FLUSH) && enqueued_samples > 0)
|
||||||
|
{
|
||||||
|
play();
|
||||||
|
}
|
||||||
emu_paused = false;
|
emu_paused = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue