Fix UpdateTotals(); add debug info.

This commit is contained in:
Paul Chote
2010-09-18 14:48:37 +12:00
parent ce9caec291
commit c796e155e7
2 changed files with 8 additions and 5 deletions

View File

@@ -292,9 +292,9 @@ namespace OpenRA
public static void Exit() { quit = true; }
public static Action<Color,string,string> AddChatLine = (c,n,s) => {};
public static void Debug(string s, params object[] args)
{
{
AddChatLine(Color.White, "Debug", String.Format(s,args));
}