mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-27 11:40:52 +00:00
More irrelevant negation reduction, sorry.
This commit is contained in:
parent
7f9accf38b
commit
5bb0b5684e
1 changed files with 1 additions and 1 deletions
|
@ -1328,7 +1328,7 @@ fixed_t P_GetMobjGravity(mobj_t *mo)
|
|||
gravityadd = -gravityadd;
|
||||
mo->eflags ^= MFE_VERTICALFLIP;
|
||||
}
|
||||
if (!!(mo->eflags & MFE_VERTICALFLIP) != wasflip)
|
||||
if (!(mo->eflags & MFE_VERTICALFLIP) == wasflip)
|
||||
P_PlayerFlip(mo);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue