Make fast-forward much less choppy, make frame counter display optional again
This commit is contained in:
parent
bcf69dfb9d
commit
c4e47c60d4
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue