Prefer signed integers

This commit is contained in:
Aetias
2024-03-19 17:13:26 +01:00
parent 9f2dbce3b9
commit 064086da4f
20 changed files with 56 additions and 54 deletions
+3 -3
View File
@@ -9,9 +9,9 @@ typedef int s32;
typedef short s16;
typedef char s8;
typedef u8 unk8;
typedef u16 unk16;
typedef u32 unk32;
typedef s8 unk8;
typedef s16 unk16;
typedef s32 unk32;
#define CEIL_DIV(a, b) (((a) + (b) - 1) / (b))