From bb05876f84648fd757bf5433e777e9c759c44f61 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 25 Jul 2012 00:51:59 +0000 Subject: [PATCH] Fix lag counter display where lag frame drawing did not use the anchoring property --- BizHawk.MultiClient/DisplayManager/DisplayManager.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/BizHawk.MultiClient/DisplayManager/DisplayManager.cs b/BizHawk.MultiClient/DisplayManager/DisplayManager.cs index a09562354e..55f2c9e1e1 100644 --- a/BizHawk.MultiClient/DisplayManager/DisplayManager.cs +++ b/BizHawk.MultiClient/DisplayManager/DisplayManager.cs @@ -491,12 +491,8 @@ namespace BizHawk.MultiClient { float x = GetX(g, Global.Config.DispLagx, Global.Config.DispLaganchor, AlertFont, counter); float y = GetY(g, Global.Config.DispLagy, Global.Config.DispLaganchor, AlertFont, counter); - g.DrawString(MakeLagCounter(), AlertFont, Color.Black, - Global.Config.DispLagx + 1, - Global.Config.DispLagy + 1); - g.DrawString(MakeLagCounter(), AlertFont, FixedAlertMessageColor, - Global.Config.DispLagx, - Global.Config.DispLagy); + g.DrawString(MakeLagCounter(), AlertFont, Color.Black, x + 1, y + 1); + g.DrawString(MakeLagCounter(), AlertFont, FixedAlertMessageColor,x, y); } else {