From 644ed40f5923a7fa01e4a8f9211217f3b9f8fbfa Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 6 Oct 2012 14:24:12 +0000 Subject: [PATCH] Move lua drawing to after the frame instead of before --- BizHawk.MultiClient/MainForm.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 59e2831e08..4eca1d195e 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -2318,10 +2318,6 @@ namespace BizHawk.MultiClient public void UpdateToolsBefore() { LuaConsole1.LuaImp.FrameRegisterBefore(); -#if WINDOWS - LuaConsole1.ResumeScripts(true); - Global.DisplayManager.PreFrameUpdateLuaSource(); -#endif NESNameTableViewer1.UpdateValues(); NESPPU1.UpdateValues(); PCEBGViewer1.UpdateValues(); @@ -2337,6 +2333,10 @@ namespace BizHawk.MultiClient /// public void UpdateToolsAfter() { +#if WINDOWS + LuaConsole1.ResumeScripts(true); + Global.DisplayManager.PreFrameUpdateLuaSource(); +#endif RamWatch1.UpdateValues(); RamSearch1.UpdateValues(); HexEditor1.UpdateValues();