From 4e8331b16bb6143121ea1bba7731e1502b84512f Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 22 Oct 2022 13:33:14 +1100 Subject: [PATCH] - Fix broken wrap-around in the double version of `BobVal()`. * My first time actually witnessing this, but was only a problem with GCC... --- source/core/gamefuncs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/gamefuncs.h b/source/core/gamefuncs.h index 7c65ee9a5..5903c9ba6 100644 --- a/source/core/gamefuncs.h +++ b/source/core/gamefuncs.h @@ -601,7 +601,7 @@ inline double BobVal(int val) inline double BobVal(double val) { - return g_sinbam((unsigned)(val * (1 << 21))); + return g_sinbam(xs_CRoundToUInt(val * (1 << 21))); } #include "updatesector.h"