From 381883b747483e408198c812e3d841da65257b68 Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Tue, 4 Sep 2018 17:07:53 -0400 Subject: [PATCH] Revert a few of the changes from last commit Ended up not liking them --- 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 13647313..7c1f9df8 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -8416,10 +8416,10 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall x += xpan; y += ypan; - pviewheight = FixedMul(32<mobj_scale); + pviewheight = FixedMul(32<scale); if (mo->eflags & MFE_VERTICALFLIP) - z = mo->z + mobjinfo[mo->type].height - pviewheight - camheight; + z = mo->z + mo->height - pviewheight - camheight; else z = mo->z + pviewheight + camheight;