mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-30 22:50:51 +00:00
420: A parenthesis
This commit is contained in:
parent
46067f0579
commit
63a3125df2
1 changed files with 1 additions and 1 deletions
|
@ -2786,7 +2786,7 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
|
|||
((line->sidenum[1] != 0xFFFF && !(sides[line->sidenum[0]].rowoffset>>FRACBITS)) ?
|
||||
max(min(sides[line->sidenum[1]].rowoffset>>FRACBITS, 255), 0)
|
||||
: max(min(sides[line->sidenum[0]].rowoffset>>FRACBITS, 255), 0))
|
||||
: abs(P_AproxDistance(line->dx, line->dy))>>FRACBITS),
|
||||
: abs(P_AproxDistance(line->dx, line->dy))>>FRACBITS,
|
||||
(line->flags & ML_EFFECT4));
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue