Allow disabling frame skip from Lua (resolves #1655)

This commit is contained in:
YoshiRulz 2019-09-02 15:20:09 +10:00
parent ab042fafd0
commit 0840687d4e
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

@ -106,10 +106,10 @@ namespace BizHawk.Client.EmuHawk
}
[LuaMethodExample("client.frameskip( 8 );")]
[LuaMethod("frameskip", "Sets the frame skip value of the client UI")]
[LuaMethod("frameskip", "Sets the frame skip value of the client UI (use 0 to disable)")]
public void FrameSkip(int numFrames)
{
if (numFrames > 0)
if (numFrames >= 0)
{
Global.Config.FrameSkip = numFrames;
GlobalWin.MainForm.FrameSkipMessage();