Revert r8309. Fixes VSync not taking effect at startup.

This commit is contained in:
jdpurcell 2015-01-15 15:42:29 +00:00
parent dfe7b23fe6
commit 4272a954cf
1 changed files with 1 additions and 1 deletions

View File

@ -1669,7 +1669,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;
_throttle.signal_paused = EmulatorPaused || Global.Emulator.IsNull();
_throttle.signal_unthrottle = _unthrottled || superFastForward;
_throttle.signal_overrideSecondaryThrottle = (fastForward || rewind) && (Global.Config.SoundThrottle || Global.Config.VSyncThrottle || Global.Config.VSync);
_throttle.SetSpeedPercent(speedPercent);