1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-18 04:45:24 +00:00

Add parens around params usage in VEC_SET macro

This commit is contained in:
Dragorn421 2021-09-21 09:49:19 +02:00
parent a9604e267f
commit 0b804ac087
No known key found for this signature in database
GPG key ID: C182A3A3996E8201

View file

@ -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;