Remove a dubious IsNull() call
This commit is contained in:
parent
21889bba58
commit
6ae238b725
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue