Remove a dubious IsNull() call

This commit is contained in:
adelikat 2014-11-30 18:49:58 +00:00
parent 21889bba58
commit 6ae238b725
1 changed files with 1 additions and 1 deletions

View File

@ -1705,7 +1705,7 @@ namespace BizHawk.Client.EmuHawk
// realtime throttle is never going to be so exact that using a double here is wrong
_throttle.SetCoreFps(Global.Emulator.CoreComm.VsyncRate);
_throttle.signal_paused = EmulatorPaused || Global.Emulator.IsNull();
_throttle.signal_paused = EmulatorPaused;
_throttle.signal_unthrottle = _unthrottled || superfastforward;
_throttle.SetSpeedPercent(fastforward ? Global.Config.SpeedPercentAlternate : Global.Config.SpeedPercent);
}