From 914bec7d6584babbd099028a5a11f168b5c4c4fa Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 25 Oct 2022 11:27:44 +1100 Subject: [PATCH] - Deduct the minimum angle epsilon from unclamped pitch ranges. --- source/core/gamefuncs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 27e2e96f7..85ef4a4b1 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -519,12 +519,12 @@ inline double BobVal(double val) inline DAngle GetMinPitch() { - return !cl_clampedpitch ? DAngle90 : gi->playerPitchMin(); + return !cl_clampedpitch ? (DAngle90 - minAngle) : gi->playerPitchMin(); } inline DAngle GetMaxPitch() { - return !cl_clampedpitch ? -DAngle90 : gi->playerPitchMax(); + return !cl_clampedpitch ? (minAngle - DAngle90) : gi->playerPitchMax(); } inline DAngle ClampViewPitch(const DAngle pitch)