From ed4b101e9036cf4066240d77595faffdfa75d8da Mon Sep 17 00:00:00 2001 From: DCFApixels <99481254+DCFApixels@users.noreply.github.com> Date: Fri, 4 Apr 2025 15:07:48 +0800 Subject: [PATCH] fix defines --- src/Executors/EcsWhereExecutor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Executors/EcsWhereExecutor.cs b/src/Executors/EcsWhereExecutor.cs index 66d84d7..d439441 100644 --- a/src/Executors/EcsWhereExecutor.cs +++ b/src/Executors/EcsWhereExecutor.cs @@ -89,7 +89,7 @@ namespace DCFApixels.DragonECS.Internal public EcsSpan Execute() { Execute_Iternal(); -#if DEBUG || DRAGONECS_DEEP_DEBUG +#if DEBUG && DRAGONECS_DEEP_DEBUG var newSpan = new EcsSpan(World.ID, _filteredAllEntities, _filteredAllEntitiesCount); using (EcsGroup group = EcsGroup.New(World)) { @@ -121,7 +121,7 @@ namespace DCFApixels.DragonECS.Internal return Execute(); } ExecuteFor_Iternal(span); -#if DEBUG || DRAGONECS_DEEP_DEBUG +#if DEBUG && DRAGONECS_DEEP_DEBUG var newSpan = new EcsSpan(World.ID, _filteredEntities, _filteredEntitiesCount); foreach (var e in newSpan) {