From df03ffea8d23b319c29c0c937e70d5afb15e76e2 Mon Sep 17 00:00:00 2001 From: quou Date: Thu, 27 Mar 2025 21:46:31 +1100 Subject: actually dec Slinky::count on remove --- world.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world.cpp b/world.cpp index 410ed04..bdd0e5a 100644 --- a/world.cpp +++ b/world.cpp @@ -33,7 +33,7 @@ void* Slinky::get(Entity_Id eid, int mapping, int size) { } void Slinky::remove(Entity_Id eid, int mapping, int size) { - int end = (count - 1) * size; + int end = (--count) * size; assert(eid == entities[mapping]); (void)eid; memmove( -- cgit v1.2.3-54-g00ecf