Use startpos->z instead of startpos->options >> ZSHIFT in F_StartTitleScreen

This commit is contained in:
MascaraSnake 2019-12-26 20:55:29 +01:00
parent 7ccb695fa1
commit 2d90098b6a
1 changed files with 1 additions and 1 deletions

View File

@ -2493,7 +2493,7 @@ void F_StartTitleScreen(void)
camera.x = startpos->x << FRACBITS;
camera.y = startpos->y << FRACBITS;
camera.subsector = R_PointInSubsector(camera.x, camera.y);
camera.z = camera.subsector->sector->floorheight + ((startpos->options >> ZSHIFT) << FRACBITS);
camera.z = camera.subsector->sector->floorheight + (startpos->z << FRACBITS);
camera.angle = (startpos->angle % 360)*ANG1;
camera.aiming = 0;
}