From 8fba2176bc34aa7e507f0b9d983427bb5e522e17 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Sun, 5 Nov 2017 05:38:31 +0100 Subject: * Modified shadows for Town centre. * Bugfixes in unit movement and collision detection. Now it should work fine. * Added include guards to all *.i files. * Other minor changes --- System.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'System.c') diff --git a/System.c b/System.c index 8535eb9..43f2c91 100644 --- a/System.c +++ b/System.c @@ -271,8 +271,8 @@ bool SystemArrayCompare(unsigned short * arr1, unsigned short * arr2, size_t sz) return true; } -bool SystemCollisionCheck(TYPE_COLLISION_BLOCK c1, TYPE_COLLISION_BLOCK c2) +bool SystemCollisionCheck(TYPE_COLLISION_BLOCK* c1, TYPE_COLLISION_BLOCK* c2) { - return (bool)check_bb_collision( c1.x, c1.y, c1.w, c1.h, - c2.x, c2.y, c2.w, c2.h ); + return (bool)check_bb_collision( c1->x, c1->y, c1->w, c1->h, + c2->x, c2->y, c2->w, c2->h ); } -- cgit v1.2.3