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 dfc1436c9f.

This caused the progress bar to not disappear after finishing a normal seek.
This commit is contained in:
Morilli 2022-01-26 10:39:30 +01:00
parent a0560c452b
commit 937b966393
1 changed files with 1 additions and 2 deletions

View File

@ -844,11 +844,10 @@ namespace BizHawk.Client.EmuHawk
set
{
bool wasTurboSeeking = IsTurboSeeking;
_pauseOnFrame = value;
SetPauseStatusBarIcon();
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
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
{
Tools.UpdateToolsBefore();
Tools.UpdateToolsAfter();