Skip to content

Commit 937b966

Browse files
committed
Revert "Comment says we want to update after a turbo seek. So, don't update if we weren't turbo seeking. (This removes double-updating tools after reaching the desired frame, unless turbo seek is turned on.)"
This reverts commit dfc1436. This caused the progress bar to not disappear after finishing a normal seek.
1 parent a0560c4 commit 937b966

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/BizHawk.Client.EmuHawk/MainForm.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,11 +844,10 @@ private set
844844

845845
set
846846
{
847-
bool wasTurboSeeking = IsTurboSeeking;
848847
_pauseOnFrame = value;
849848
SetPauseStatusBarIcon();
850849

851-
if (wasTurboSeeking && value == null) // TODO: make an Event handler instead, but the logic here is that after turbo seeking, tools will want to do a real update when the emulator finally pauses
850+
if (value == null) // TODO: make an Event handler instead, but the logic here is that after turbo seeking, tools will want to do a real update when the emulator finally pauses
852851
{
853852
Tools.UpdateToolsBefore();
854853
Tools.UpdateToolsAfter();

0 commit comments

Comments
 (0)