Skip to content

Commit

Permalink
Merge branch 'large-room-msvc-fix' into 'next'
Browse files Browse the repository at this point in the history
Fix -ANGLE_180 because MSVC complains

See merge request STJr/SRB2!432
  • Loading branch information
mazmazz committed Dec 25, 2018
2 parents 26f956a + fa6f791 commit 98e46f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/r_bsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 98e46f5

Please sign in to comment.