From 25460e8e987326d85c48b1a1b1e63898af400d98 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 9 Dec 2022 20:00:37 +1100 Subject: [PATCH] - Fix change to constant in last commit. * How did that little `3` not make it in... --- source/core/gameinput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index b8917edb6..00453c0d1 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -48,7 +48,7 @@ static constexpr DAngle YAW_SPINSTAND = DAngle::fromDeg(675.); static constexpr DAngle YAW_SPINCROUCH = YAW_SPINSTAND * 0.5; static constexpr DAngle PITCH_LOOKSPEED = DAngle::fromDeg(222.83185); static constexpr DAngle PITCH_AIMSPEED = PITCH_LOOKSPEED * 0.5; -static constexpr DAngle PITCH_CENTERSPEED = DAngle::fromDeg(10.775); +static constexpr DAngle PITCH_CENTERSPEED = DAngle::fromDeg(10.7375); static constexpr DAngle PITCH_CNTRSINEOFFSET = DAngle90 / 8.; static constexpr DAngle PITCH_HORIZOFFSPEED = DAngle::fromDeg(4.375); static constexpr DAngle PITCH_HORIZOFFCLIMB = DAngle::fromDeg(-38.);