- Blood: Fix player's z-pos with changed horizon.

This commit is contained in:
Mitchell Richters 2020-09-23 08:54:19 +10:00
parent 5e6317b8b9
commit 3d58a09aeb

View file

@ -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);
}