From 15b2264cb4818fabd3c494c4279a33ba39f41543 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Fri, 2 Dec 2022 19:45:29 -0800 Subject: [PATCH] Use LuaThread Yield here instead of directly using LuaState's --- src/BizHawk.Client.Common/lua/LuaFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/lua/LuaFile.cs b/src/BizHawk.Client.Common/lua/LuaFile.cs index d5c2d25d04..d4eca1f3df 100644 --- a/src/BizHawk.Client.Common/lua/LuaFile.cs +++ b/src/BizHawk.Client.Common/lua/LuaFile.cs @@ -58,7 +58,7 @@ namespace BizHawk.Client.Common if (State == RunState.Running && Thread.State.Status == KeraLua.LuaStatus.OK) { - Thread.State.Yield(0); // we MUST yield this thread, else old references to lua libs might be used (and those may contain references to a Dispose()'d emulator) + Thread.Yield(); // we MUST yield this thread, else old references to lua libs might be used (and those may contain references to a Dispose()'d emulator) } State = RunState.Disabled;