Skip to content
Snippets Groups Projects
Commit fa6f791e authored by Marco Z's avatar Marco Z
Browse files

Fix -ANGLE_180 because MSVC complains

-ANGLE_180 evaluates equal to ANGLE_180.
parent 26f956ac
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment