summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Abair <erik.abair@gmail.com>2021-05-06 08:46:53 -0700
committerRĂ©mi Verschelde <rverschelde@gmail.com>2023-01-19 09:47:13 +0100
commitd3f17c1dcaff98ab2876438c7c1b731b45e1d9b2 (patch)
treeabe142a6afb491963def72d92facad8ebd96272e
parentcf3d995e8cb477a09dcbcf59c1cc8410b4b071fe (diff)
downloadredot-cpp-d3f17c1dcaff98ab2876438c7c1b731b45e1d9b2.tar.gz
Change behavior of Math::sign to match Godot builtin
Fixes #551.
-rw-r--r--include/godot_cpp/core/math.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/core/math.hpp b/include/godot_cpp/core/math.hpp
index 361395d..2ead2c3 100644
--- a/include/godot_cpp/core/math.hpp
+++ b/include/godot_cpp/core/math.hpp
@@ -433,7 +433,7 @@ inline T max(T a, T b) {
template <typename T>
inline T sign(T x) {
- return static_cast<T>(x < 0 ? -1 : 1);
+ return static_cast<T>(SIGN(x));
}
template <typename T>