Slight tweak to rendering of on screen ram watch, display separator watches as ----
This commit is contained in:
parent
6f1baed4de
commit
08fcaede91
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -239,7 +239,7 @@ namespace BizHawk.MultiClient
|
|||
public override string ToString()
|
||||
{
|
||||
if (type == atype.SEPARATOR)
|
||||
return "";
|
||||
return "----";
|
||||
|
||||
StringBuilder str = new StringBuilder(notes);
|
||||
str.Append(": ");
|
||||
|
|
Loading…
Reference in New Issue