mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-22 01:01:45 +00:00
Fix typo
This commit is contained in:
parent
659410dde1
commit
1de5b77710
1 changed files with 2 additions and 2 deletions
|
@ -5879,7 +5879,7 @@ static void P_ConvertBinaryLinedefFlags(void)
|
|||
if (lines[i].flags & ML_DONTPEGTOP)
|
||||
lines[i].flags |= ML_SKEWTD;
|
||||
else
|
||||
lines[i].flags = ~ML_SKEWTD;
|
||||
lines[i].flags &= ~ML_SKEWTD;
|
||||
|
||||
if ((lines[i].flags & ML_TFERLINE) && lines[i].frontsector)
|
||||
{
|
||||
|
@ -5890,7 +5890,7 @@ static void P_ConvertBinaryLinedefFlags(void)
|
|||
if (lines[i].frontsector->lines[j]->flags & ML_DONTPEGTOP)
|
||||
lines[i].frontsector->lines[j]->flags |= ML_SKEWTD;
|
||||
else
|
||||
lines[i].frontsector->lines[j]->flags = ~ML_SKEWTD;
|
||||
lines[i].frontsector->lines[j]->flags &= ~ML_SKEWTD;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue