Add BIT_64 define to types.h

I'll be using this
This commit is contained in:
PJB3005
2026-02-24 21:39:11 +01:00
parent 513b86f8ed
commit a4f66b9892
+7
View File
@@ -4,6 +4,13 @@
#ifdef __REVOLUTION_SDK__
#include <revolution/types.h>
#else
#if _WIN64 || __LP64__
#define BIT_64 1
#else
#define BIT_64 0
#endif
typedef signed char s8;
typedef unsigned char u8;
typedef signed short int s16;