From 1eb4d7a7d2a59f74fb0b47ca73191e1a08601275 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Wed, 19 Feb 2020 15:25:22 -0500 Subject: [PATCH] Debug off by default GitOrigin-RevId: 0e0325057b0b6fad5b11a2072dd6bb14643b7847 --- Shared/Debug.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Debug.cs b/Shared/Debug.cs index 74d4419..963f7f4 100644 --- a/Shared/Debug.cs +++ b/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 toasts = new LinkedList(); // Lines in excess of MAX_LINES get dropped on the floor.