mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +00:00
Merge branch 'large-room-msvc-fix' into 'next'
Fix -ANGLE_180 because MSVC complains See merge request STJr/SRB2!432
This commit is contained in:
commit
98e46f5b1c
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