From 789fa71a142446f357a8831048327afedbd82535 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 28 Sep 2022 12:31:19 +1000 Subject: [PATCH] - Use `g_atan2()` within `maphoriz()` so consistent math is used throughout engine. --- source/core/maptypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/maptypes.h b/source/core/maptypes.h index 4ce0ebba4..20e1e883c 100644 --- a/source/core/maptypes.h +++ b/source/core/maptypes.h @@ -722,5 +722,5 @@ constexpr DAngle mapangle(int mapang) } inline DAngle maphoriz(double maphoriz) { - return DAngle::fromDeg(atan2(maphoriz, 128.) * (180. / pi::pi())); + return DAngle::fromDeg(g_atan2(maphoriz, 128.) * (180. / pi::pi())); }