No need to set this twice; StopSeeking sets it.

This commit is contained in:
SuuperW 2022-01-22 19:19:03 -06:00
parent 0d7de83d4b
commit 9e8cf71509
3 changed files with 4 additions and 3 deletions

View File

@ -3177,9 +3177,12 @@ namespace BizHawk.Client.EmuHawk
{
Tools.TAStudio.StopSeeking();
}
else
{
PauseOnFrame = null;
}
}
}
if (InputManager.ClientControls["Rewind"] || PressRewind)
{

View File

@ -103,7 +103,6 @@ namespace BizHawk.Client.EmuHawk
if (Emulator.Frame >= MainForm.PauseOnFrame)
{
MainForm.PauseEmulator();
MainForm.PauseOnFrame = null;
StopSeeking();
GoToPreviousFrame();
}

View File

@ -891,7 +891,6 @@ namespace BizHawk.Client.EmuHawk
if (notch > 0 && Emulator.Frame >= MainForm.PauseOnFrame)
{
MainForm.PauseEmulator();
MainForm.PauseOnFrame = null;
StopSeeking();
GoToFrame(Emulator.Frame - notch);
}