Ram Watch - fix on screen display
This commit is contained in:
parent
2586a04498
commit
c24133fbee
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -228,6 +228,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Changes();
|
Changes();
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
WatchListView.ItemCount = Watches.ItemCount;
|
WatchListView.ItemCount = Watches.ItemCount;
|
||||||
|
UpdateValues();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue