Lua console - dispose of scripts when closing the console window

This commit is contained in:
adelikat 2017-02-04 10:32:26 -06:00
parent 27739a719b
commit 923565c350
1 changed files with 6 additions and 1 deletions

View File

@ -65,9 +65,14 @@ namespace BizHawk.Client.EmuHawk
if (AskSaveChanges())
{
SaveColumnInfo(LuaListView, Settings.Columns);
CloseLua();
GlobalWin.DisplayManager.ClearLuaSurfaces();
LuaImp.GuiLibrary.DrawFinish();
foreach (var lua in _luaList)
{
lua.Thread.Dispose();
}
CloseLua();
}
else
{