Differing signedness comparison

This commit is contained in:
James R 2019-10-25 21:44:34 -07:00
parent 64e7708832
commit 634292a5fc
1 changed files with 1 additions and 1 deletions

View File

@ -7976,7 +7976,7 @@ void P_MobjThinker(mobj_t *mobj)
INT32 strength;
++mobj->movedir;
mobj->frame &= ~FF_TRANSMASK;
strength = min(mobj->fuse, mobj->movedir)*3;
strength = min(mobj->fuse, (INT32)mobj->movedir)*3;
if (strength < 10)
mobj->frame |= ((10-strength)<<(FF_TRANSSHIFT));
}