diff --git a/BizHawk.MultiClient/RenderPanel.cs b/BizHawk.MultiClient/RenderPanel.cs index 1df1c1e769..d293facddc 100644 --- a/BizHawk.MultiClient/RenderPanel.cs +++ b/BizHawk.MultiClient/RenderPanel.cs @@ -254,7 +254,7 @@ namespace BizHawk.MultiClient public void DrawScreenInfo() { //TODO: If movie loaded use that frame counter, and also display total movie frame count if read-only - //if (Global.Config.DisplayFrameCounter) + if (Global.Config.DisplayFrameCounter) MessageFont.DrawString(null, Global.Emulator.Frame.ToString(), 1, 1, new Color4(Color.White)); //TODO: Allow user to set screen coordinates? if (Global.Config.DisplayInput) diff --git a/BizHawk.MultiClient/Throttle.cs b/BizHawk.MultiClient/Throttle.cs index 035376074b..e952343caa 100644 --- a/BizHawk.MultiClient/Throttle.cs +++ b/BizHawk.MultiClient/Throttle.cs @@ -25,7 +25,7 @@ namespace BizHawk.MultiClient public void Step(bool allowSleep, int forceFrameSkip) { int skipRate = (forceFrameSkip < 0) ? cfg_frameskiprate : forceFrameSkip; - int ffSkipRate = (forceFrameSkip < 0) ? 9 : forceFrameSkip; + int ffSkipRate = (forceFrameSkip < 0) ? 3 : forceFrameSkip; if (lastskiprate != skipRate) {