lua console - roll back commit that disposes scripts when closing the window, apparnetly luainterface doesn't want you to dispose of disposable things

This commit is contained in:
adelikat 2017-02-04 15:30:13 -06:00
parent 0c7cedd2ac
commit 3b197b8fdf
1 changed files with 0 additions and 7 deletions

View File

@ -68,13 +68,6 @@ namespace BizHawk.Client.EmuHawk
GlobalWin.DisplayManager.ClearLuaSurfaces();
LuaImp.GuiLibrary.DrawFinish();
foreach (var lua in _luaList)
{
if (lua.Thread != null)
{
lua.Thread.Dispose();
}
}
CloseLua();
}
else