From dc090b81fe7971fa1838662fc4c56ee35021a2cd Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 30 Sep 2021 19:26:29 +1000 Subject: [PATCH] Re-use hack from `client.reboot_core` for `openrom` (resolves #2940) --- .../lua/CommonLibs/ClientLuaLibrary.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/lua/CommonLibs/ClientLuaLibrary.cs b/src/BizHawk.Client.Common/lua/CommonLibs/ClientLuaLibrary.cs index d2155f478a..50d737100d 100644 --- a/src/BizHawk.Client.Common/lua/CommonLibs/ClientLuaLibrary.cs +++ b/src/BizHawk.Client.Common/lua/CommonLibs/ClientLuaLibrary.cs @@ -166,7 +166,12 @@ namespace BizHawk.Client.Common [LuaMethodExample("client.openrom( \"C:\\\" );")] [LuaMethod("openrom", "opens the Open ROM dialog")] - public void OpenRom(string path) => APIs.EmuClient.OpenRom(path); + public void OpenRom(string path) + { + _luaLibsImpl.IsRebootingCore = true; + APIs.EmuClient.OpenRom(path); + _luaLibsImpl.IsRebootingCore = false; + } [LuaMethodExample("client.opentasstudio( );")] [LuaMethod("opentasstudio", "opens the TAStudio dialog")]