console log lua exceptions, workaround for #607

This commit is contained in:
zeromus 2016-03-31 14:11:20 -05:00
parent fcb0c8bc32
commit 5024f6022e
1 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,8 @@ namespace BizHawk.Client.Common
EnvironmentSandbox.Sandbox(callback);
}
catch (LuaException ex)
{
{
Console.WriteLine(ex);
Logger(ex.ToString());
if (exceptionCallback != null)
{