diff options
| -rw-r--r-- | debug_build.bat | 1 | ||||
| -rw-r--r-- | src/config.h | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debug_build.bat b/debug_build.bat new file mode 100644 index 0000000..5a7c6db --- /dev/null +++ b/debug_build.bat @@ -0,0 +1 @@ +sh build.sh -d
\ No newline at end of file diff --git a/src/config.h b/src/config.h index 019ceaf..e0f8fe7 100644 --- a/src/config.h +++ b/src/config.h @@ -1,5 +1,11 @@ #pragma once +typedef char i8; +typedef unsigned char u8; + +typedef short i16; +typedef unsigned short u16; + typedef int i32; typedef long long i64; @@ -36,7 +42,7 @@ typedef struct{ fx32 x, y; }vec2; -typedef i32 b32; +typedef i8 b32; #define false 0 #define true 1 |
