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:
parent
79cdfaba6b
commit
86c74305e4
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue