From 6f146cf55505212bb37b33eac649e6bc944e8d24 Mon Sep 17 00:00:00 2001 From: DCFApixels <99481254+DCFApixels@users.noreply.github.com> Date: Sat, 17 May 2025 16:30:59 +0800 Subject: [PATCH] fix --- src/Collections/EcsGroup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Collections/EcsGroup.cs b/src/Collections/EcsGroup.cs index 6a53a65..2f7dd90 100644 --- a/src/Collections/EcsGroup.cs +++ b/src/Collections/EcsGroup.cs @@ -207,7 +207,7 @@ namespace DCFApixels.DragonECS { #if DEBUG && DRAGONECS_DEEP_DEBUG var h = MemoryAllocator.Handler.FromDataPtr(page); - if (h.GetID() == 0 || page == null) + if (h.GetID_Debug() == 0 || page == null) { Throw.DeepDebugException(); }