change an "if (!x)" to "if (x)" because that's easier to read

This commit is contained in:
adelikat 2015-07-09 19:25:59 -04:00
parent 791089a06d
commit 453d8014bf
1 changed files with 3 additions and 3 deletions

View File

@ -2842,13 +2842,13 @@ namespace BizHawk.Client.EmuHawk
GlobalWin.Tools.LuaConsole.LuaImp.CallFrameAfterEvent();
}
if (!IsTurboing)
if (IsTurboing)
{
UpdateToolsAfter();
GlobalWin.Tools.FastUpdateAfter();
}
else
{
GlobalWin.Tools.FastUpdateAfter();
UpdateToolsAfter();
}
if (IsSeeking && Global.Emulator.Frame == PauseOnFrame.Value)