diff options
| author | Jason Dsouza <61184127+jasmcaus@users.noreply.github.com> | 2021-04-19 11:41:02 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-19 11:41:02 +0530 |
| commit | 9d949ef82edc8307173889328cc32084a909e89c (patch) | |
| tree | 0fac5d973939c4f79b0c8002b795c301c55dc69c /src | |
| parent | ae04af4e4ed4ecd521e1a915edd5b8637b1f40ce (diff) | |
Fix potential Typo : S32 ==> I32
Diffstat (limited to 'src')
| -rw-r--r-- | src/gb/gb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gb/gb.h b/src/gb/gb.h index b56c20f1e..60e7b8e64 100644 --- a/src/gb/gb.h +++ b/src/gb/gb.h @@ -491,8 +491,8 @@ typedef i32 b32; // NOTE(bill): Prefer this!!! #define USIZE_MIX U32_MIN #define USIZE_MAX U32_MAX - #define ISIZE_MIX S32_MIN - #define ISIZE_MAX S32_MAX + #define ISIZE_MIX I32_MIN + #define ISIZE_MAX I32_MAX #elif defined(GB_ARCH_64_BIT) #define USIZE_MIX U64_MIN #define USIZE_MAX U64_MAX |