Lua - use the proper Log method in some lua libraries

This commit is contained in:
adelikat 2017-07-10 11:24:32 -05:00
parent 2a2f3ea7e2
commit 5781746251
2 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ namespace BizHawk.Client.EmuHawk
} }
else else
{ {
ConsoleLuaLibrary.Log("Invalid frame skip value"); Log("Invalid frame skip value");
} }
} }

View File

@ -239,7 +239,7 @@ namespace BizHawk.Client.EmuHawk
} }
catch (Exception ex) catch (Exception ex)
{ {
ConsoleLuaLibrary.Log(ex.Message); Log(ex.Message);
} }
return ""; return "";
@ -274,7 +274,7 @@ namespace BizHawk.Client.EmuHawk
} }
catch (Exception ex) catch (Exception ex)
{ {
ConsoleLuaLibrary.Log(ex.Message); Log(ex.Message);
} }
return ""; return "";