Make fast-forward much less choppy, make frame counter display optional again

This commit is contained in:
beirich 2011-02-28 07:17:57 +00:00
parent bcf69dfb9d
commit c4e47c60d4
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)
{