diff --git a/include/dolphin/types.h b/include/dolphin/types.h index 17d63b4a76..e8c3df7861 100644 --- a/include/dolphin/types.h +++ b/include/dolphin/types.h @@ -4,6 +4,13 @@ #ifdef __REVOLUTION_SDK__ #include #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;