From 7f1b8402d1e02701cb0bffe8db0fbcb13381624d Mon Sep 17 00:00:00 2001 From: Mitch Richters Date: Tue, 7 Dec 2021 20:02:11 +1100 Subject: [PATCH] - Slight optimisation to `I_GetInputFrac()` by multiplying by inverse instead of dividing on a constant. --- source/common/utility/i_time.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/common/utility/i_time.cpp b/source/common/utility/i_time.cpp index 93b3dac89..0d1db5de8 100644 --- a/source/common/utility/i_time.cpp +++ b/source/common/utility/i_time.cpp @@ -213,8 +213,8 @@ double I_GetInputFrac(bool const synchronised, double const ticrate) // This rectifies a deviation of 100+ ms or more depending on the length // of the operation to be within 1-2 ms of synchronised input // from 60 fps to at least 1000 fps at ticrates of 30 and 40 Hz. - const double result = elapsedInputTicks * ticrate / 1000.; - return result * (1. + 0.35 * (1. - ticrate / 50.) * (1. - result)); + const double result = elapsedInputTicks * ticrate * (1. / 1000.); + return result * (1. + 0.35 * (1. - ticrate * (1. / 50.)) * (1. - result)); } else {