aboutsummaryrefslogtreecommitdiff
path: root/world.c
diff options
context:
space:
mode:
Diffstat (limited to 'world.c')
-rw-r--r--world.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/world.c b/world.c
index 39673d4..4995351 100644
--- a/world.c
+++ b/world.c
@@ -29,12 +29,15 @@ Entity new_entity(World* world) {
world->bitmask[e] = 0;
+ world->gmemory--;
+
return e;
}
void destroy_entity(World* world, Entity e) {
world->recycle_bin[world->recycle_bin_count++] = e;
world->bitmask[e] = 0;
+ world->gmemory++;
}
void add_components(World* world, Entity e, CType bits) {