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/vector4i.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/math/vector4i.h') diff --git a/core/math/vector4i.h b/core/math/vector4i.h index 37d905878f..d08e40d754 100644 --- a/core/math/vector4i.h +++ b/core/math/vector4i.h @@ -132,7 +132,7 @@ double Vector4i::length() const { } Vector4i Vector4i::abs() const { - return Vector4i(ABS(x), ABS(y), ABS(z), ABS(w)); + return Vector4i(Math::abs(x), Math::abs(y), Math::abs(z), Math::abs(w)); } Vector4i Vector4i::sign() const { -- cgit v1.2.3