null check for previous commit
This commit is contained in:
parent
923565c350
commit
3d805a3541
|
@ -70,7 +70,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
LuaImp.GuiLibrary.DrawFinish();
|
||||
foreach (var lua in _luaList)
|
||||
{
|
||||
lua.Thread.Dispose();
|
||||
if (lua.Thread != null)
|
||||
{
|
||||
lua.Thread.Dispose();
|
||||
}
|
||||
}
|
||||
CloseLua();
|
||||
}
|
||||
|
@ -541,8 +544,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
}, () =>
|
||||
{
|
||||
lf.State = LuaFile.RunState.Disabled;
|
||||
lf.Thread = null;
|
||||
lf.Stop();
|
||||
});
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
Loading…
Reference in New Issue