fix #414 by idiot-proofing the lua console command window, if emu.frameadvance() is called, log a warning instead of blowing up

This commit is contained in:
adelikat 2016-11-13 11:26:09 -06:00
parent ddf23e4c3a
commit 889feeeeba
1 changed files with 6 additions and 0 deletions

View File

@ -1311,6 +1311,12 @@ namespace BizHawk.Client.EmuHawk
// TODO: Maybe make these try-catches more general
if (!string.IsNullOrWhiteSpace(InputBox.Text))
{
if (InputBox.Text.Contains("emu.frameadvance("))
{
ConsoleLog("emu.frameadvance() can not be called from the console");
return;
}
LuaSandbox.Sandbox(null, () =>
{
LuaImp.ExecuteString(string.Format("console.log({0})", InputBox.Text));