From 058ac331b07a634f01eea18dbad4161503d407cb Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Sun, 4 Sep 2022 20:16:59 -0500 Subject: Minor fixes to Vector4 --- core/math/vector3i.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/math/vector3i.h') diff --git a/core/math/vector3i.h b/core/math/vector3i.h index b49c1142ed..825ce40318 100644 --- a/core/math/vector3i.h +++ b/core/math/vector3i.h @@ -128,7 +128,7 @@ double Vector3i::length() const { } Vector3i Vector3i::abs() const { - return Vector3i(ABS(x), ABS(y), ABS(z)); + return Vector3i(Math::abs(x), Math::abs(y), Math::abs(z)); } Vector3i Vector3i::sign() const { -- cgit v1.2.3