From 564a1e4a679822246d6639ac811390632bde23e3 Mon Sep 17 00:00:00 2001 From: kalimag Date: Sun, 27 Nov 2022 19:53:58 +0100 Subject: [PATCH] Remove obsolete `LuaConsole.RunLuaScripts` Method is mostly a duplicate of `EnableLuaFile`, only called when loading a session or an already loaded script. In either case it didn't actually start the scripts due to an inverted condition, and would stop running scripts without doing the required cleanup. --- .../tools/Lua/LuaConsole.cs | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index b16b6e0c50..6d018b814f 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -341,36 +341,6 @@ namespace BizHawk.Client.EmuHawk UpdateRegisteredFunctionsDialog(); } - private void RunLuaScripts() - { - foreach (var file in LuaImp.ScriptList.Where(s => !s.IsSeparator)) - { - if (!file.Enabled && file.Thread is null) - { - try - { - LuaSandbox.Sandbox(null, () => - { - string pathToLoad = ProcessPath(file.Path); - LuaImp.SpawnAndSetFileThread(file.Path, file); - LuaSandbox.CreateSandbox(file.Thread, Path.GetDirectoryName(pathToLoad)); - }, () => - { - file.State = LuaFile.RunState.Disabled; - }); - } - catch (Exception e) - { - DialogController.ShowMessageBox(e.ToString()); - } - } - else - { - file.Stop(); - } - } - } - private void SessionChangedCallback() { OutputMessages.Text =