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() public void ClearGUIText()
{ {
GlobalWin.DisplayManager.NeedsToPaint = true; GlobalWin.DisplayManager.NeedsToPaint = true;
GUITextList.Clear(); GUITextList.Clear();
} }

View File

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

View File

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