From 6ae238b7253c8fafee46d520f18d54e3451b9125 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 30 Nov 2014 18:49:58 +0000 Subject: [PATCH] Remove a dubious IsNull() call --- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 9147330fd8..256c1daf98 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -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); }