From 3d58a09aebdbd0deb60c9adbb4cc28a359efcd80 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 23 Sep 2020 08:54:19 +1000 Subject: [PATCH] - Blood: Fix player's z-pos with changed horizon. --- source/blood/src/view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blood/src/view.cpp b/source/blood/src/view.cpp index be7c50bb3..7ce863f1e 100644 --- a/source/blood/src/view.cpp +++ b/source/blood/src/view.cpp @@ -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); }