Skip to content
Snippets Groups Projects
Commit 98e46f5b authored by mazmazz's avatar mazmazz
Browse files

Merge branch 'large-room-msvc-fix' into 'next'

Fix -ANGLE_180 because MSVC complains

See merge request STJr/SRB2!432
parents 26f956ac fa6f791e
Branches
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.
Please register or to comment