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()
|
||||
{
|
||||
GlobalWin.DisplayManager.NeedsToPaint = true;
|
||||
|
||||
GUITextList.Clear();
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -228,6 +228,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
Changes();
|
||||
UpdateWatchCount();
|
||||
WatchListView.ItemCount = Watches.ItemCount;
|
||||
UpdateValues();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue