No need to set this twice; StopSeeking sets it.
This commit is contained in:
parent
0d7de83d4b
commit
9e8cf71509
|
@ -3177,9 +3177,12 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
Tools.TAStudio.StopSeeking();
|
Tools.TAStudio.StopSeeking();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
PauseOnFrame = null;
|
PauseOnFrame = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (InputManager.ClientControls["Rewind"] || PressRewind)
|
if (InputManager.ClientControls["Rewind"] || PressRewind)
|
||||||
{
|
{
|
||||||
|
|
|
@ -103,7 +103,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (Emulator.Frame >= MainForm.PauseOnFrame)
|
if (Emulator.Frame >= MainForm.PauseOnFrame)
|
||||||
{
|
{
|
||||||
MainForm.PauseEmulator();
|
MainForm.PauseEmulator();
|
||||||
MainForm.PauseOnFrame = null;
|
|
||||||
StopSeeking();
|
StopSeeking();
|
||||||
GoToPreviousFrame();
|
GoToPreviousFrame();
|
||||||
}
|
}
|
||||||
|
|
|
@ -891,7 +891,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (notch > 0 && Emulator.Frame >= MainForm.PauseOnFrame)
|
if (notch > 0 && Emulator.Frame >= MainForm.PauseOnFrame)
|
||||||
{
|
{
|
||||||
MainForm.PauseEmulator();
|
MainForm.PauseEmulator();
|
||||||
MainForm.PauseOnFrame = null;
|
|
||||||
StopSeeking();
|
StopSeeking();
|
||||||
GoToFrame(Emulator.Frame - notch);
|
GoToFrame(Emulator.Frame - notch);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue