Debug off by default

GitOrigin-RevId: 0e0325057b0b6fad5b11a2072dd6bb14643b7847
This commit is contained in:
Colin McMillen 2020-02-19 15:25:22 -05:00
parent 44bd3c6896
commit 1eb4d7a7d2

View File

@ -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.