mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 23:42:11 +00:00
Missed sign cast
This commit is contained in:
parent
c6bd1111e5
commit
250aab5889
1 changed files with 1 additions and 1 deletions
|
@ -7979,7 +7979,7 @@ void P_MobjThinker(mobj_t *mobj)
|
|||
|| goalpost->movefactor != mobj->z
|
||||
|| goalpost->friction != mobj->height
|
||||
|| flipchanged
|
||||
|| goalpost->threshold != (mobj->flags & (MF_SLIDEME | MF_GRENADEBOUNCE)))
|
||||
|| goalpost->threshold != (INT32)(mobj->flags & (MF_SLIDEME | MF_GRENADEBOUNCE)))
|
||||
{
|
||||
goalpost->destscale = sparkle->destscale = droneman->destscale = mobj->destscale;
|
||||
|
||||
|
|
Loading…
Reference in a new issue