From c4e47c60d4b5d0b69b2b5dbaf855ec7addbf6308 Mon Sep 17 00:00:00 2001 From: beirich Date: Mon, 28 Feb 2011 07:17:57 +0000 Subject: [PATCH] Make fast-forward much less choppy, make frame counter display optional again --- BizHawk.MultiClient/RenderPanel.cs | 2 +- BizHawk.MultiClient/Throttle.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {