Lua Console - immediate box - in some situations wrap the text in a console.log(), such as if the user simply types a variable name
This commit is contained in:
parent
3b13ea4a8f
commit
09072acb3b
|
@ -1097,7 +1097,14 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
catch (LuaScriptException ex)
|
catch (LuaScriptException ex)
|
||||||
{
|
{
|
||||||
ConsoleLog(ex.ToString());
|
try
|
||||||
|
{
|
||||||
|
LuaImp.ExecuteString(string.Format("console.log({0})", InputBox.Text));
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
ConsoleLog(ex.ToString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_consoleCommandHistory.Insert(0, InputBox.Text);
|
_consoleCommandHistory.Insert(0, InputBox.Text);
|
||||||
_consoleCommandHistoryIndex = -1;
|
_consoleCommandHistoryIndex = -1;
|
||||||
|
|
Loading…
Reference in New Issue