Revert fix to emu.registerbefore/after functions because thee fix was leaking memory

This commit is contained in:
adelikat 2012-10-06 21:01:21 +00:00
parent a9ff371e63
commit 822c079011
1 changed files with 9 additions and 9 deletions

View File

@ -878,23 +878,23 @@ namespace BizHawk.MultiClient
}
}
}
//LuaImp.gui_drawFinishEmu();
LuaImp.gui_drawFinishEmu();
}
public void StartLuaDrawing()
{
if (luaList != null && luaList.Count > 0)
{
LuaImp.gui_drawNewEmu();
}
//if (luaList != null && luaList.Count > 0)
//{
// LuaImp.gui_drawNewEmu();
//}
}
public void EndLuaDrawing()
{
if (luaList != null && luaList.Count > 0)
{
LuaImp.gui_drawFinishEmu();
}
//if (luaList != null && luaList.Count > 0)
//{
// LuaImp.gui_drawFinishEmu();
//}
}
public bool IsRunning()