From 92bf00d3e960a060da54f7b1b0de001971c33a78 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 9 Dec 2022 17:48:26 +1100 Subject: [PATCH] - Fix incorrect sector usage in `calcviewpitch()`. --- source/core/gameinput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index 6d16c058f..d34418f81 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -289,9 +289,9 @@ void PlayerHorizon::calcviewpitch(const DVector2& pos, DAngle const ang, bool co if (tempsect != nullptr) // If the new point is inside a valid sector... { // Get the floorz as if the new (x,y) point was still in - // your sector + // your sector, unless it's Blood. double const j = getflorzofslopeptr(cursectnum, pos); - double const k = getflorzofslopeptr(tempsect, rotpt); + double const k = getflorzofslopeptr(!isBlood() ? cursectnum : tempsect, rotpt); // If extended point is in same sector as you or the slopes // of the sector of the extended point and your sector match