From 07c32e23ba43c1b9459fec6fe425b7d464f91eb9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 19 Aug 2012 23:24:16 +0000 Subject: [PATCH] GUIText (Lua and ram watch) - remove gray in drawing --- BizHawk.MultiClient/DisplayManager/DisplayManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/DisplayManager/DisplayManager.cs b/BizHawk.MultiClient/DisplayManager/DisplayManager.cs index a809d8f44c..6dda8a3d49 100644 --- a/BizHawk.MultiClient/DisplayManager/DisplayManager.cs +++ b/BizHawk.MultiClient/DisplayManager/DisplayManager.cs @@ -401,7 +401,7 @@ namespace BizHawk.MultiClient float posy = GetY(g, GUITextList[x].Y, GUITextList[x].Anchor, MessageFont, GUITextList[x].Message); g.DrawString(GUITextList[x].Message, MessageFont, GUITextList[x].BackGround, posx + 2, posy + 2); - g.DrawString(GUITextList[x].Message, MessageFont, Color.Gray, posx + 1, posy + 1); + //g.DrawString(GUITextList[x].Message, MessageFont, Color.Gray, posx + 1, posy + 1); if (GUITextList[x].Alert) g.DrawString(GUITextList[x].Message, MessageFont, FixedMessagesColor, posx, posy);