diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs index 35c88e58f5..cf246f896f 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaWinform.cs @@ -9,6 +9,8 @@ namespace BizHawk.Client.EmuHawk { public List ControlEvents = new List(); + private string CurrentDirectory = Environment.CurrentDirectory; + public LuaWinform() { InitializeComponent(); @@ -28,6 +30,8 @@ namespace BizHawk.Client.EmuHawk public void DoLuaEvent(IntPtr handle) { + string oldCurrentDirectory = Environment.CurrentDirectory; + Environment.CurrentDirectory = CurrentDirectory; foreach (LuaEvent l_event in ControlEvents) { if (l_event.Control == handle) @@ -35,6 +39,7 @@ namespace BizHawk.Client.EmuHawk l_event.Event.Call(); } } + Environment.CurrentDirectory = oldCurrentDirectory; } public class LuaEvent