lua console - when toggling a script on, behave the same as if you loaded it. It should run immediately, not on the next frame

This commit is contained in:
adelikat 2017-02-03 16:31:38 -06:00
parent 79cdfaba6b
commit 86c74305e4
1 changed files with 9 additions and 1 deletions

View File

@ -61,10 +61,18 @@ namespace BizHawk.Client.Common
public void Toggle()
{
if (State == RunState.Paused)
{
State = RunState.Running;
}
else if (State == RunState.Disabled)
{
State = RunState.Running;
else State = RunState.Disabled;
FrameWaiting = false;
}
else
{
State = RunState.Disabled;
}
}
public void TogglePause()