From 51c769247a41de31d734f5d1996776ea8d2fdfb9 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Tue, 7 Jun 2016 19:44:43 +0100 Subject: [PATCH] Compiling fixes. --- src/p_user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_user.c b/src/p_user.c index 9eff0ae28..2e9f0b295 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -2977,8 +2977,8 @@ static void P_DoTeeter(player_t *player) sec = R_PointInSubsector(checkx, checky)->sector; - fixed_t ceilingheight = sec->ceilingheight; - fixed_t floorheight = sec->floorheight; + ceilingheight = sec->ceilingheight; + floorheight = sec->floorheight; #ifdef ESLOPE if (sec->c_slope) ceilingheight = P_GetZAt(sec->c_slope, checkx, checky);