summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/math.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/godot_cpp/core/math.hpp')
-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>