From fb75d0fefb983baf8498429d77184a9b88c41244 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Wed, 13 May 2026 15:33:59 -0500 Subject: [PATCH] mac was somehow not already including "math/mMathFn.h" in the chain --- Engine/source/core/util/tVector.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Engine/source/core/util/tVector.h b/Engine/source/core/util/tVector.h index 8c54d5d1e..b14388cd9 100644 --- a/Engine/source/core/util/tVector.h +++ b/Engine/source/core/util/tVector.h @@ -33,7 +33,9 @@ #include #include "console/engineTypes.h" #include "console/engineTypeInfo.h" - +#ifndef _MMATHFN_H_ +#include "math/mMathFn.h" +#endif //----------------------------------------------------------------------------- // Helper definitions for the vector class.