From f69fd00458217c19d90990c59ab7805dcade7b3c Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 18 May 2014 16:58:17 +0000 Subject: [PATCH] Only make the Frame count Red in the frame counter display when lag (and not tne movie length and finished indicator) --- BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs index 81ce7b21f0..e5ed144e04 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/OSDManager.cs @@ -342,12 +342,12 @@ namespace BizHawk.Client.EmuHawk float x = GetX(g, Global.Config.DispFrameCx, Global.Config.DispFrameanchor, message); float y = GetY(g, Global.Config.DispFrameCy, Global.Config.DispFrameanchor, message); - DrawOsdMessage( - g, - message, - Global.Emulator.IsLagFrame ? FixedAlertMessageColor : Color.FromArgb(Global.Config.MessagesColor), - x, - y); + DrawOsdMessage(g, message, Color.FromArgb(Global.Config.MessagesColor), x, y); + + if (Global.Emulator.IsLagFrame) + { + DrawOsdMessage(g, Global.Emulator.Frame.ToString(), FixedAlertMessageColor, x, y); + } } if (Global.Config.DisplayInput)