throttle shouldnt act as paused when rewinding (fixes #3053, but may break some obscure case? the specifications are complicated)

This commit is contained in:
zeromus 2021-12-31 16:25:58 -05:00
parent b20fdb8e85
commit 007442773a
1 changed files with 1 additions and 0 deletions

View File

@ -2938,6 +2938,7 @@ namespace BizHawk.Client.EmuHawk
SyncThrottle();
_throttle.signal_frameAdvance = _runloopFrameAdvance;
_throttle.signal_continuousFrameAdvancing = _runloopFrameProgress;
if (_lastFastForwardingOrRewinding) _throttle.signal_paused = false;
_throttle.Step(Config, Sound, allowSleep: true, forceFrameSkip: -1);
}