From a4f66b989279607ad3062a2a77757f40c9869304 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Tue, 24 Feb 2026 21:39:11 +0100 Subject: [PATCH] Add BIT_64 define to types.h I'll be using this --- include/dolphin/types.h | 7 +++++++ 1 file changed, 7 insertions(+) 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;