mirror of
https://git.coom.tech/drummyfish/raycastlib.git
synced 2024-11-21 20:29:59 +01:00
Fix collisions
This commit is contained in:
parent
a12da2290a
commit
32dcb072b1
1 changed files with 1 additions and 1 deletions
|
@ -1040,7 +1040,7 @@ void moveCameraWithCollision(Camera *camera, Vector2D planeOffset,
|
||||||
if (!dir##Collides)\
|
if (!dir##Collides)\
|
||||||
{ /* now also check for coll on the neighbouring square */ \
|
{ /* now also check for coll on the neighbouring square */ \
|
||||||
int16_t dir2##Square2 = divRoundDown(corner.dir2 - dir2##Dir *\
|
int16_t dir2##Square2 = divRoundDown(corner.dir2 - dir2##Dir *\
|
||||||
CAMERA_COLL_RADIUS,UNITS_PER_SQUARE);\
|
CAMERA_COLL_RADIUS * 2,UNITS_PER_SQUARE);\
|
||||||
if (dir2##Square2 != dir2##Square)\
|
if (dir2##Square2 != dir2##Square)\
|
||||||
{\
|
{\
|
||||||
if (x)\
|
if (x)\
|
||||||
|
|
Loading…
Reference in a new issue