mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-02 06:40:20 +01:00
Fix game pausing/unpausing
This commit is contained in:
parent
f17f984721
commit
650bc0c1f2
|
|
@ -230,7 +230,10 @@ u64 audio_ringbuffer::update()
|
|||
else if (emu_paused)
|
||||
{
|
||||
// Emulator unpaused
|
||||
play();
|
||||
if (has_capability(AudioBackend::PLAY_PAUSE_FLUSH) && enqueued_samples > 0)
|
||||
{
|
||||
play();
|
||||
}
|
||||
emu_paused = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue