mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-13 10:21:18 +00:00
Add parens around params usage in VEC_SET macro
This commit is contained in:
parent
a9604e267f
commit
0b804ac087
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
#include "ultra64.h"
|
#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 {
|
typedef struct {
|
||||||
f32 x, y;
|
f32 x, y;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue