mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 13:51:31 +00:00
Fix -ANGLE_180 because MSVC complains
-ANGLE_180 evaluates equal to ANGLE_180.
This commit is contained in:
parent
26f956acea
commit
fa6f791ec3
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))
|
||||
angle1 = ANGLE_180-1;
|
||||
else
|
||||
angle2 = -ANGLE_180;
|
||||
angle2 = ANGLE_180;
|
||||
}
|
||||
|
||||
if ((signed)angle2 >= (signed)clipangle) return false;
|
||||
|
|
Loading…
Reference in a new issue