From 6726c19f9ca8d023f15e523d6b0dd0f246556abe Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 1 Sep 2020 19:48:21 +0200 Subject: [PATCH] - removed constexpr from FloatToAngle. I overlooked the xs_CRoundToInt call in there. --- source/common/utility/m_fixed.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/utility/m_fixed.h b/source/common/utility/m_fixed.h index 3bdd055f0..b765f997a 100644 --- a/source/common/utility/m_fixed.h +++ b/source/common/utility/m_fixed.h @@ -68,7 +68,7 @@ inline constexpr int32_t FixedToInt(fixed_t f) return (f + FRACUNIT/2) >> FRACBITS; } -inline constexpr unsigned FloatToAngle(double f) +inline unsigned FloatToAngle(double f) { return xs_CRoundToInt((f)* (0x40000000 / 90.)); }