From 85100b7d62414927122761c93be886d5e439a259 Mon Sep 17 00:00:00 2001 From: DCFApixels <99481254+DCFApixels@users.noreply.github.com> Date: Thu, 1 May 2025 12:14:41 +0800 Subject: [PATCH] fix DebugService --- src/DebugUtils/EcsDebug.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugUtils/EcsDebug.cs b/src/DebugUtils/EcsDebug.cs index 0f5608e..e128b0a 100644 --- a/src/DebugUtils/EcsDebug.cs +++ b/src/DebugUtils/EcsDebug.cs @@ -247,7 +247,7 @@ namespace DCFApixels.DragonECS #region Static Constructor static DebugService() { -#if !UNITY_5_3_OR_NEWER +#if UNITY_5_3_OR_NEWER Set(new NullDebugService()); #else Set(new DefaultDebugService());