Change boolean size to 1 byte

This commit is contained in:
2025-12-07 12:17:40 +00:00
parent 432e4a48d5
commit 9c5b95c229
41 changed files with 489 additions and 364 deletions

View File

@@ -28,16 +28,16 @@
#define u32 uint32_t
#define u64 uint64_t
#define b32 uint32_t
#define b8 uint8_t
#ifndef WAPP_PLATFORM_CPP
#ifndef false
#define false (b32)0
#define false (b8)0
#endif // !false
#ifndef true
#define true (b32)1
#define true (b8)1
#endif // !true
#endif // !WAPP_PLATFORM_CPP