Don't double update tools when rewinding (or attempting to rewind).

This commit is contained in:
SuuperW 2022-01-27 10:47:31 -06:00
parent e473c7b88f
commit ec35080f32
1 changed files with 2 additions and 2 deletions

View File

@ -3188,9 +3188,9 @@ namespace BizHawk.Client.EmuHawk
}
}
}
if (InputManager.ClientControls["Rewind"] || PressRewind)
else if (isRewinding)
{
// Tools will want to be updated after rewind (load state), but we only need to manually do this if we did not frame advance.
UpdateToolsAfter();
}