diff options
Diffstat (limited to 'src/maths')
-rw-r--r-- | src/maths/maths_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/maths_types.h b/src/maths/maths_types.h index 5ef09db..609672c 100644 --- a/src/maths/maths_types.h +++ b/src/maths/maths_types.h @@ -92,7 +92,7 @@ typedef struct u32x2 { u32 x; u32 y; } u32x2; -#define u32x2(x, y) ((u32x3){ x, y }) +#define u32x2(x, y) ((u32x2){ x, y }) // Type aliass |