Browse Source

debug off by default

main
Colin McMillen 3 years ago
parent
commit
d2d671e24f
  1. 2
      Shared/Debug.cs

2
Shared/Debug.cs

@ -27,7 +27,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. // This is a LinkedList instead of a List because SetFpsText() adds to its front.
static readonly LinkedList<string> toasts = new LinkedList<string>(); static readonly LinkedList<string> toasts = new LinkedList<string>();
// Lines in excess of MAX_LINES get dropped on the floor. // Lines in excess of MAX_LINES get dropped on the floor.

Loading…
Cancel
Save