mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 20:40:47 +00:00
- Blood: Fix player's z-pos with changed horizon.
This commit is contained in:
parent
5e6317b8b9
commit
3d58a09aeb
1 changed files with 1 additions and 1 deletions
|
@ -716,7 +716,7 @@ void viewDrawScreen(bool sceneonly)
|
|||
{
|
||||
q16horiz += q16slopehoriz;
|
||||
}
|
||||
cZ += FixedToInt(q16horiz * 10);
|
||||
cZ += (FixedToInt(q16horiz) - 100) * 10;
|
||||
cameradist = -1;
|
||||
cameraclock = gFrameClock +mulscale16(4, (int)gInterpolate);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue