Fix -ANGLE_180 because MSVC complains

-ANGLE_180 evaluates equal to ANGLE_180.
This commit is contained in:
mazmazz 2018-12-25 01:14:05 -05:00
parent 26f956acea
commit fa6f791ec3
1 changed files with 1 additions and 1 deletions

View File

@ -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;