From f1b23b9ed31e67b4a24ccae9a51e888f6172759f Mon Sep 17 00:00:00 2001 From: Suuper Date: Tue, 14 Jul 2015 15:14:00 -0500 Subject: [PATCH] Bugfix: Editing while seeking could set the seek frame to an earlier frame. --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 1e050115da..91152a1118 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -660,7 +660,7 @@ namespace BizHawk.Client.EmuHawk if (pauseOn.HasValue && _autoRestoreFrame.HasValue && _autoRestoreFrame < pauseOn) { // If we are already seeking to a later frame don't shorten that journey here - _autoRestoreFrame = GlobalWin.MainForm.PauseOnFrame; + _autoRestoreFrame = pauseOn; } DoAutoRestore();