From a408b352f13df546b2262ca01cf162b60891cdae Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Fri, 21 Jul 2023 13:48:02 -0600 Subject: Sonic fast collision --- src/world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/world.c') diff --git a/src/world.c b/src/world.c index e6f24bb..1a3edde 100644 --- a/src/world.c +++ b/src/world.c @@ -255,7 +255,7 @@ void updateWorld(World * world, Game * game) { entity2 = &world->entities[j]; // Collided. - if (checkEntityCollision(*entity, *entity2)) + if (checkEntityCollision(entity, entity2)) handleCollisionInWorld(entity, entity2); } -- cgit v1.2.3