From d2d671e24f230be803c77b1875b824c2f073dc85 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 12 Jul 2021 15:27:18 -0400 Subject: [PATCH] debug off by default --- Shared/Debug.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Debug.cs b/Shared/Debug.cs index 5a429b1..a4d0387 100644 --- a/Shared/Debug.cs +++ b/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. static readonly LinkedList toasts = new LinkedList(); // Lines in excess of MAX_LINES get dropped on the floor.