debug off by default

This commit is contained in:
Colin McMillen 2021-07-12 15:27:18 -04:00
parent fb0fee59ad
commit d2d671e24f

View File

@ -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.
static readonly LinkedList<string> toasts = new LinkedList<string>();
// Lines in excess of MAX_LINES get dropped on the floor.