summaryrefslogtreecommitdiff
path: root/source/base/base.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/base/base.h')
-rwxr-xr-xsource/base/base.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/base/base.h b/source/base/base.h
index ef23391..cf2a15f 100755
--- a/source/base/base.h
+++ b/source/base/base.h
@@ -52,22 +52,22 @@ typedef uint32_t u32;
52typedef uint16_t u16; 52typedef uint16_t u16;
53typedef uint8_t u8; 53typedef uint8_t u8;
54 54
55typedef int8_t i8; 55typedef int8_t s8;
56typedef int16_t i16; 56typedef int16_t s16;
57typedef int32_t i32; 57typedef int32_t s32;
58typedef int64_t i64; 58typedef int64_t s64;
59 59
60typedef float f32; 60typedef float f32;
61typedef double f64; 61typedef double f64;
62 62
63typedef i32 b32; 63typedef s32 b32;
64typedef i16 b16; 64typedef s16 b16;
65typedef u8 b8; 65typedef u8 b8;
66 66
67typedef uintptr_t umm; 67typedef uintptr_t umm;
68typedef intptr_t smm; 68typedef intptr_t smm;
69 69
70#define TRUE (0 == 0) 70#define TRUE (1 == 1)
71#define FALSE (0 != 0) 71#define FALSE (1 != 1)
72 72
73#endif 73#endif