From 4df145d76a33b8189b55c376b4e1e64cbbfb93f6 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 26 Oct 2022 12:34:09 +0900 Subject: [PATCH] [scene] Improve entity component check For a component to be on an entity, the entity id in the component pool's dense array must match the entity. --- include/QF/scene/component.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QF/scene/component.h b/include/QF/scene/component.h index 6baf76b37..827633184 100644 --- a/include/QF/scene/component.h +++ b/include/QF/scene/component.h @@ -194,7 +194,7 @@ COMPINLINE int Ent_HasComponent (uint32_t ent, uint32_t comp, ecs_registry_t *reg) { uint32_t ind = reg->comp_pools[comp].sparse[Ent_Index (ent)]; - return ind != nullent; + return reg->comp_pools[comp].dense[ind] == ent; } COMPINLINE void *