Revert a few of the changes from last commit

Ended up not liking them
This commit is contained in:
TehRealSalt 2018-09-04 17:07:53 -04:00
parent 6e328a4e73
commit 381883b747
1 changed files with 2 additions and 2 deletions

View File

@ -8416,10 +8416,10 @@ boolean P_MoveChaseCamera(player_t *player, camera_t *thiscam, boolean resetcall
x += xpan;
y += ypan;
pviewheight = FixedMul(32<<FRACBITS, mapheaderinfo[gamemap-1]->mobj_scale);
pviewheight = FixedMul(32<<FRACBITS, mo->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;