From c8e324ff49d1cb9f728203d59914ad5682eb350f Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Thu, 21 Apr 2011 23:26:18 +0000 Subject: [PATCH] oops, screen messages should use color variable too --- BizHawk.MultiClient/RenderPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/RenderPanel.cs b/BizHawk.MultiClient/RenderPanel.cs index 5b609e653d..6f03ced129 100644 --- a/BizHawk.MultiClient/RenderPanel.cs +++ b/BizHawk.MultiClient/RenderPanel.cs @@ -309,7 +309,7 @@ namespace BizHawk.MultiClient int x = 3; int y = backingControl.Size.Height - (line*18); MessageFont.DrawString(null, messages[i].Message, x+2, y+2, new Color4(Color.Black)); - MessageFont.DrawString(null, messages[i].Message, x, y, new Color4(Color.White)); + MessageFont.DrawString(null, messages[i].Message, x, y, Color.FromArgb(Global.Config.MessagesColor)); } }