diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-22 15:12:44 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-22 15:12:44 +1000 |
commit | 51d0535a8d49b72ab1e47acf30f654403a94c423 (patch) | |
tree | c8e8124c7a35c2fcfa7afa857b50ce0cdb15ba7c /src/maths | |
parent | 6fccac3372170153b59e829d11c6c0b0a5c2bc77 (diff) |
wip: porting shadowmaps to RAL
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 |