From 0dcd209d912982faa268c47ff9d3c0522f36f360 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 29 Aug 2022 17:10:50 +1000 Subject: [PATCH] - Fixed a missed `interpolatedvaluef()` fix. --- source/core/coreactor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/coreactor.h b/source/core/coreactor.h index 0a6e8019d..aaab887c9 100644 --- a/source/core/coreactor.h +++ b/source/core/coreactor.h @@ -142,7 +142,7 @@ public: double interpolatedz(double const smoothratio, int const scale = 16) { - return interpolatedvalue(opos.Z, spr.pos.Z, smoothratio, scale); + return interpolatedvaluef(opos.Z, spr.pos.Z, smoothratio, scale); } DVector2 interpolatedvec2(double const smoothratio, int const scale = 16)