Bugfix: Editing while seeking could set the seek frame to an earlier frame.

This commit is contained in:
Suuper 2015-07-14 15:14:00 -05:00
parent a9af8e4f3c
commit f1b23b9ed3
1 changed files with 1 additions and 1 deletions

View File

@ -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();