Tastudio - when navigating to a "future" frame, don't seek if you didn't need to (can happen when navigating to a marker that is one frame after the inputlog length)
This commit is contained in:
parent
a2762d708e
commit
c775cca820
|
@ -377,14 +377,17 @@ namespace BizHawk.Client.EmuHawk
|
|||
LoadState(_currentTasMovie[_currentTasMovie.LastEmulatedFrame].State.ToArray());
|
||||
}
|
||||
|
||||
GlobalWin.MainForm.UnpauseEmulator();
|
||||
if (Global.Config.TAStudioAutoPause && frame < _currentTasMovie.InputLogLength)
|
||||
if (frame != Global.Emulator.Frame) // If we aren't already at our destination, seek
|
||||
{
|
||||
GlobalWin.MainForm.PauseOnFrame = _currentTasMovie.InputLogLength;
|
||||
}
|
||||
else
|
||||
{
|
||||
GlobalWin.MainForm.PauseOnFrame = frame;
|
||||
GlobalWin.MainForm.UnpauseEmulator();
|
||||
if (Global.Config.TAStudioAutoPause && frame < _currentTasMovie.InputLogLength)
|
||||
{
|
||||
GlobalWin.MainForm.PauseOnFrame = _currentTasMovie.InputLogLength;
|
||||
}
|
||||
else
|
||||
{
|
||||
GlobalWin.MainForm.PauseOnFrame = frame;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue