summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-17 20:36:56 +0000
committernasr <nsrddyn@gmail.com>2026-03-17 20:36:56 +0000
commitfaaebe4f754d2bf138803e94424935de12a20235 (patch)
tree2524b5ab212b8d3dccd2731e4a006d2955ac774f /source
parent3f6096c322192c7024d5eae8b21a3e5f24f6903e (diff)
feature(base): signed boolean. sometimes i want to return -1 even though it doesnt fit the boolean description
Diffstat (limited to 'source')
-rwxr-xr-xsource/base/base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/base/base.h b/source/base/base.h
index e1af950..b9e317a 100755
--- a/source/base/base.h
+++ b/source/base/base.h
@@ -62,7 +62,7 @@ typedef double f64;
62 62
63typedef s32 b32; 63typedef s32 b32;
64typedef s16 b16; 64typedef s16 b16;
65typedef u8 b8; 65typedef s8 b8;
66 66
67typedef uintptr_t umm; 67typedef uintptr_t umm;
68typedef intptr_t smm; 68typedef intptr_t smm;