Only make the Frame count Red in the frame counter display when lag (and not tne movie length and finished indicator)
This commit is contained in:
parent
32a1fba5c0
commit
f69fd00458
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue