prevent some NREs occurring with the new Lua stuff
This commit is contained in:
parent
999e487557
commit
2efae13af4
|
@ -56,7 +56,7 @@ namespace BizHawk.Client.Common
|
|||
return;
|
||||
}
|
||||
|
||||
if (Thread.State.Status == KeraLua.LuaStatus.OK)
|
||||
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)
|
||||
}
|
||||
|
|
|
@ -209,11 +209,9 @@ namespace BizHawk.Client.EmuHawk
|
|||
return;
|
||||
}
|
||||
|
||||
runningScripts = luaLibsImpl.ScriptList.Where(lf => lf.Enabled).ToList();
|
||||
|
||||
foreach (var file in runningScripts)
|
||||
foreach (var file in luaLibsImpl.ScriptList)
|
||||
{
|
||||
luaLibsImpl.CallExitEvent(file);
|
||||
if (file.Enabled) luaLibsImpl.CallExitEvent(file);
|
||||
luaLibsImpl.RegisteredFunctions.RemoveForFile(file, Emulator);
|
||||
file.Stop();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue