summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2024-05-12 16:04:01 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2024-05-12 16:04:01 -0400
commit62e0778390f838cdb92f16b3582e2d76299ae8a5 (patch)
tree56f654268089544b7d3625b4cf60fc9fb087be97 /include/common.h
parent94ec354dde88a3e5e9f3f5b23f3506f83f0beb80 (diff)
fixed up typedef for u32 and s32 from mistake long ago
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h4
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;