Fix compiler warning

This commit is contained in:
Lachlan 2020-07-04 05:25:34 +08:00
parent e403de7459
commit cdb247d08f
1 changed files with 1 additions and 1 deletions

View File

@ -2933,7 +2933,7 @@ static boolean P_ThingHeightClip(mobj_t *thing)
boolean onfloor = P_IsObjectOnGround(thing);//(thing->z <= thing->floorz); boolean onfloor = P_IsObjectOnGround(thing);//(thing->z <= thing->floorz);
ffloor_t *rover = NULL; ffloor_t *rover = NULL;
boolean bouncing; boolean bouncing;
boolean hitfloor; boolean hitfloor = false;
if (thing->flags & MF_NOCLIPHEIGHT) if (thing->flags & MF_NOCLIPHEIGHT)
return true; return true;