More irrelevant negation reduction, sorry.

This commit is contained in:
toasterbabe 2016-09-03 21:43:02 +01:00 committed by wolfy852
parent 7f9accf38b
commit 5bb0b5684e
1 changed files with 1 additions and 1 deletions

View File

@ -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