diff options
| -rw-r--r-- | world.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -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( |