From bff5d2b49092f6ac38912527299da33a342fd6f3 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Wed, 29 Jan 2020 13:56:08 -0500 Subject: [PATCH] enable Debug by default GitOrigin-RevId: ba7ff1d9b775484baa023bfb6bb6cbe5bc64d7f8 --- Shared/Debug.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/Debug.cs b/Shared/Debug.cs index 23117ee..00b044a 100644 --- a/Shared/Debug.cs +++ b/Shared/Debug.cs @@ -25,8 +25,8 @@ namespace SemiColinGames { Color = color; } } - - public static bool Enabled; + + public static bool Enabled = true; // This is a LinkedList instead of a List because SetFpsText() adds to its front. static readonly LinkedList toasts = new LinkedList(); static readonly List rects = new List();