From 0f4682655b39b2b289aebfe82ac58e77b345cd68 Mon Sep 17 00:00:00 2001 From: dbalatoni13 <40299962+dbalatoni13@users.noreply.github.com> Date: Tue, 1 Apr 2025 07:04:54 +0200 Subject: [PATCH] Add HuSetVecF to ext_math behind a guard --- include/ext_math.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ext_math.h b/include/ext_math.h index 7ff5edbf..e979909d 100644 --- a/include/ext_math.h +++ b/include/ext_math.h @@ -32,4 +32,8 @@ typedef struct vec2f { #define asind(x) (180.0*(asinf((x)) / M_PI)) #define atan2d(y, x) (180.0*(atan2((y), (x)) / M_PI)) +#ifndef __MWERKS__ +void HuSetVecF(Vec* arg0, f32 arg8, f32 arg9, f32 argA) +#endif + #endif