Ram Watch - fix on screen display

This commit is contained in:
adelikat 2013-11-20 02:14:29 +00:00
parent 2586a04498
commit c24133fbee
3 changed files with 4 additions and 3 deletions

View File

@ -409,7 +409,6 @@ namespace BizHawk.Client.EmuHawk
public void ClearGUIText()
{
GlobalWin.DisplayManager.NeedsToPaint = true;
GUITextList.Clear();
}

View File

@ -2618,6 +2618,9 @@ namespace BizHawk.Client.EmuHawk
bool updateFpsString = (runloop_last_ff != ff);
runloop_last_ff = ff;
//client input-related duties
GlobalWin.OSD.ClearGUIText();
if (!fff)
{
UpdateToolsBefore();
@ -2626,8 +2629,6 @@ namespace BizHawk.Client.EmuHawk
Global.ClickyVirtualPadController.FrameTick();
runloop_fps++;
//client input-related duties
GlobalWin.OSD.ClearGUIText();
if ((DateTime.Now - runloop_second).TotalSeconds > 1)
{

View File

@ -228,6 +228,7 @@ namespace BizHawk.Client.EmuHawk
Changes();
UpdateWatchCount();
WatchListView.ItemCount = Watches.ItemCount;
UpdateValues();
}
}