mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-26 04:51:43 +00:00
Use startpos->z instead of startpos->options >> ZSHIFT in F_StartTitleScreen
This commit is contained in:
parent
b1a43c7c4a
commit
f342610413
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue