mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 08:51:28 +00:00
[ecs] Pass the registry in to the component destroy function
This makes it possible for hierarchies to clean themselves up (by deleting their entities (though that will cause other problems later when the hierarchy doesn't own the entities)), thus plugging a memory leak when parsing passage text.
This commit is contained in:
parent
91dd9d3dfa
commit
292e4ca132
1 changed files with 4 additions and 0 deletions
|
@ -477,6 +477,10 @@ Hierarchy_Create (hierarchy_t *hierarchy)
|
|||
static void
|
||||
hierarchy_destroy (hierarchy_t *hierarchy)
|
||||
{
|
||||
hierarchy_InvalidateReferences (hierarchy, 0, hierarchy->num_objects);
|
||||
for (uint32_t i = 0; i < hierarchy->num_objects; i++) {
|
||||
ECS_DelEntity (hierarchy->reg, hierarchy->ent[i]);
|
||||
}
|
||||
free (hierarchy->ent);
|
||||
free (hierarchy->childCount);
|
||||
free (hierarchy->childIndex);
|
||||
|
|
Loading…
Reference in a new issue