Slight tweak to rendering of on screen ram watch, display separator watches as ----

This commit is contained in:
andres.delikat 2011-09-13 00:29:54 +00:00
parent 6f1baed4de
commit 08fcaede91
2 changed files with 3 additions and 1 deletions

View File

@ -503,6 +503,8 @@ namespace BizHawk.MultiClient
{
MessageFont.DrawString(null, GUITextList[x].Message,
GUITextList[x].X + 2, GUITextList[x].Y + 2, Color.Black);
MessageFont.DrawString(null, GUITextList[x].Message,
GUITextList[x].X + 1, GUITextList[x].Y + 1, Color.Gray);
MessageFont.DrawString(null, GUITextList[x].Message,
GUITextList[x].X, GUITextList[x].Y, Color.FromArgb(Global.Config.MessagesColor));
}

View File

@ -239,7 +239,7 @@ namespace BizHawk.MultiClient
public override string ToString()
{
if (type == atype.SEPARATOR)
return "";
return "----";
StringBuilder str = new StringBuilder(notes);
str.Append(": ");