Browse Source

Debug off by default

GitOrigin-RevId: 0e0325057b
master
Colin McMillen 4 years ago
parent
commit
1eb4d7a7d2
  1. 2
      Shared/Debug.cs

2
Shared/Debug.cs

@ -26,7 +26,7 @@ namespace SemiColinGames {
}
}
public static bool Enabled = true;
public static bool Enabled = false;
// This is a LinkedList instead of a List because SetFpsText() adds to its front.
static readonly LinkedList<string> toasts = new LinkedList<string>();
// Lines in excess of MAX_LINES get dropped on the floor.

Loading…
Cancel
Save