mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix -ANGLE_180 because MSVC complains
-ANGLE_180 evaluates equal to ANGLE_180.
This commit is contained in:
parent
ab017edd6e
commit
91abcd66b7
1 changed files with 1 additions and 1 deletions
|
|
@ -614,7 +614,7 @@ static boolean R_CheckBBox(const fixed_t *bspcoord)
|
||||||
if ((angle1 >= ANGLE_180) && (angle1 < ANGLE_270))
|
if ((angle1 >= ANGLE_180) && (angle1 < ANGLE_270))
|
||||||
angle1 = ANGLE_180-1;
|
angle1 = ANGLE_180-1;
|
||||||
else
|
else
|
||||||
angle2 = -ANGLE_180;
|
angle2 = ANGLE_180;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((signed)angle2 >= (signed)clipangle) return false;
|
if ((signed)angle2 >= (signed)clipangle) return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue