Lua - output registersave/load error messages to the lua console not the screen
This commit is contained in:
parent
251c169cf3
commit
8bc8ec0e5b
|
@ -35,7 +35,7 @@ namespace BizHawk.MultiClient
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
Global.RenderPanel.AddMessage("error running function attached by lua function savestate.registersave");
|
Global.MainForm.LuaConsole1.WriteToOutputWindow("error running function attached by lua function savestate.registersave");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,7 @@ namespace BizHawk.MultiClient
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
Global.RenderPanel.AddMessage("error running function attached by lua function savestate.registerload");
|
Global.MainForm.LuaConsole1.WriteToOutputWindow("error running function attached by lua function savestate.registerload");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue