From c775cca820e2b239e844201444f6dbda18a03351 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 28 Sep 2014 17:34:47 +0000 Subject: [PATCH] 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) --- .../tools/TAStudio/TAStudio.cs | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index e1a2a3396b..25793e41c6 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -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; + } } }