mirror of
https://github.com/zeldaret/ph
synced 2026-08-04 09:08:46 -04:00
Prefer signed integers
This commit is contained in:
+3
-3
@@ -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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user