diff options
| author | elijah-thomas774 <elijahthomas774@gmail.com> | 2024-05-12 16:04:01 -0400 |
|---|---|---|
| committer | elijah-thomas774 <elijahthomas774@gmail.com> | 2024-05-12 16:04:01 -0400 |
| commit | 62e0778390f838cdb92f16b3582e2d76299ae8a5 (patch) | |
| tree | 56f654268089544b7d3625b4cf60fc9fb087be97 /include/common.h | |
| parent | 94ec354dde88a3e5e9f3f5b23f3506f83f0beb80 (diff) | |
fixed up typedef for u32 and s32 from mistake long ago
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h index 14f7051b..07356462 100644 --- a/include/common.h +++ b/include/common.h @@ -54,12 +54,12 @@ typedef signed char s8; typedef signed short s16; -typedef signed int s32; +typedef signed long s32; typedef signed long long s64; typedef unsigned char u8; typedef unsigned short u16; -typedef unsigned int u32; +typedef unsigned long u32; typedef unsigned long long u64; typedef float f32; typedef double f64; |
