From e0dc96abdc6e9a72510e56367884ce0334ff9984 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 30 Apr 2012 00:30:44 +0000 Subject: [PATCH] GUI Text / Ram Watch on screen display - fix inverted foreground and background colors --- BizHawk.MultiClient/DisplayManager/DisplayManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/DisplayManager/DisplayManager.cs b/BizHawk.MultiClient/DisplayManager/DisplayManager.cs index 7cc3783da8..16fd9523b4 100644 --- a/BizHawk.MultiClient/DisplayManager/DisplayManager.cs +++ b/BizHawk.MultiClient/DisplayManager/DisplayManager.cs @@ -309,14 +309,14 @@ namespace BizHawk.MultiClient float posx = GetX(g, GUITextList[x].X, GUITextList[x].Anchor, MessageFont, GUITextList[x].Message); float posy = GetY(g, GUITextList[x].Y, GUITextList[x].Anchor, MessageFont, GUITextList[x].Message); - g.DrawString(GUITextList[x].Message, MessageFont, GUITextList[x].ForeColor, posx + 2, posy + 2); + g.DrawString(GUITextList[x].Message, MessageFont, GUITextList[x].BackGround, posx + 2, posy + 2); g.DrawString(GUITextList[x].Message, MessageFont, Brushes.Gray, posx + 1, posy + 1); if (GUITextList[x].Alert) using(var brush = new SolidBrush(Color.FromArgb(Global.Config.AlertMessageColor))) g.DrawString(GUITextList[x].Message, MessageFont, brush, posx,posy); else - g.DrawString(GUITextList[x].Message, MessageFont, GUITextList[x].BackGround, posx, posy); + g.DrawString(GUITextList[x].Message, MessageFont, GUITextList[x].ForeColor, posx, posy); } catch (Exception e) {