diff --git a/include/z64math.h b/include/z64math.h index 5d6227d4c5..1247d1a303 100644 --- a/include/z64math.h +++ b/include/z64math.h @@ -3,7 +3,7 @@ #include "ultra64.h" -#define VEC_SET(V,X,Y,Z) V.x=X;V.y=Y;V.z=Z +#define VEC_SET(V,X,Y,Z) (V).x=(X);(V).y=(Y);(V).z=(Z) typedef struct { f32 x, y;