From 6ea50f6e49c024c335558889d577b4a8b0fc1c89 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 28 Mar 2015 00:26:10 +0000 Subject: [PATCH] Fix issue 410 - Lua - don't crash on lua script errors in savestate and frame events --- BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs index 3fe4d92fcd..fb5427dba3 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Events.cs @@ -57,7 +57,7 @@ namespace BizHawk.Client.Common lf.Call(name); } } - catch (SystemException e) + catch (Exception e) { Log( "error running function attached by lua function event.onsavestate" + @@ -79,7 +79,7 @@ namespace BizHawk.Client.Common lf.Call(name); } } - catch (SystemException e) + catch (Exception e) { Log( "error running function attached by lua function event.onloadstate" + @@ -101,7 +101,7 @@ namespace BizHawk.Client.Common lf.Call(); } } - catch (SystemException e) + catch (Exception e) { Log( "error running function attached by lua function event.onframestart" + @@ -123,7 +123,7 @@ namespace BizHawk.Client.Common lf.Call(); } } - catch (SystemException e) + catch (Exception e) { Log( "error running function attached by lua function event.onframeend" +