From 70d2a8dc78bd0fffbb383cad16f2d80543560eef Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 30 May 2022 21:06:32 +1000 Subject: [PATCH] - Remove a seldom-used `getTicrateScale()` overload. --- source/core/gameinput.cpp | 4 ++-- source/core/gameinput.h | 7 +------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index 21236b0ab..e31dc4b98 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -89,7 +89,7 @@ static double turnheldtime; void updateTurnHeldAmt(double const scaleAdjust) { - turnheldtime += getTicrateScale(BUILDTICRATE, scaleAdjust); + turnheldtime += getTicrateScale(BUILDTICRATE) * scaleAdjust; } bool isTurboTurnTime() @@ -403,7 +403,7 @@ void PlayerAngle::applyinput(float const avel, ESyncBits* actions, double const if (spin < 0) { // return spin to 0 - double add = getTicrateScale(!(*actions & SB_CROUCH) ? SPINSTAND : SPINCROUCH, scaleAdjust); + double add = getTicrateScale(!(*actions & SB_CROUCH) ? SPINSTAND : SPINCROUCH) * scaleAdjust; spin += add; if (spin > 0) { diff --git a/source/core/gameinput.h b/source/core/gameinput.h index 4033d8b31..bd9bc985b 100644 --- a/source/core/gameinput.h +++ b/source/core/gameinput.h @@ -12,7 +12,7 @@ binangle getincanglebam(binangle a, binangle na); //--------------------------------------------------------------------------- // -// Functions for dividing an input value by current ticrate for angle/horiz scaling. +// Function for dividing an input value by current ticrate for angle/horiz scaling. // //--------------------------------------------------------------------------- @@ -21,11 +21,6 @@ inline double getTicrateScale(double const value) return value / GameTicRate; } -inline double getTicrateScale(double const value, double const scaleAdjust) -{ - return scaleAdjust * getTicrateScale(value); -} - struct PlayerHorizon {