aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/General.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-10 17:34:11 +0200
committeraap <aap@papnet.eu>2019-07-10 17:34:11 +0200
commit90e093cd47fb2af10617b1d404fc65ca813782ec (patch)
treef77fde407d8458529f688d3cb14c2ff003573fb0 /src/core/General.h
parent4a36d64f15f898854bb8a76be86ac9a8c536b291 (diff)
and of course the last commit didnt fix everything
Diffstat (limited to 'src/core/General.h')
-rw-r--r--src/core/General.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/General.h b/src/core/General.h
index a08b622b..64613478 100644
--- a/src/core/General.h
+++ b/src/core/General.h
@@ -70,12 +70,12 @@ public:
if (y > 0.0f)
return PI - Atan2(x / y, 1.0f);
else
- return -atan2(x / y, 1.0f);
+ return -Atan2(x / y, 1.0f);
} else {
if (y > 0.0f)
return -(PI + Atan2(x / y, 1.0f));
else
- return -atan2(x / y, 1.0f);
+ return -Atan2(x / y, 1.0f);
}
}