From 8bed5ae6daa9a2ffaa665a99591cda957990018b Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 2 Sep 2012 14:14:36 +0000 Subject: [PATCH] Move lua events to the end of the frame loop --- BizHawk.MultiClient/MainForm.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index c0e3ddbec7..e86cf77042 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1898,10 +1898,6 @@ namespace BizHawk.MultiClient if (!fff) { UpdateToolsBefore(); - -#if WINDOWS - LuaConsole1.ResumeScripts(true); -#endif } if ((DateTime.Now - runloop_second).TotalSeconds > 1) @@ -1971,6 +1967,9 @@ namespace BizHawk.MultiClient if (!fff) { UpdateToolsAfter(); +#if WINDOWS + LuaConsole1.ResumeScripts(true); +#endif } }