From cdb247d08f16bd1667e2c2e7838bbb061bcad409 Mon Sep 17 00:00:00 2001 From: Lachlan Date: Sat, 4 Jul 2020 05:25:34 +0800 Subject: [PATCH] Fix compiler warning --- src/p_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_map.c b/src/p_map.c index c9342a74f..ad044c978 100644 --- a/src/p_map.c +++ b/src/p_map.c @@ -2933,7 +2933,7 @@ static boolean P_ThingHeightClip(mobj_t *thing) boolean onfloor = P_IsObjectOnGround(thing);//(thing->z <= thing->floorz); ffloor_t *rover = NULL; boolean bouncing; - boolean hitfloor; + boolean hitfloor = false; if (thing->flags & MF_NOCLIPHEIGHT) return true;