diff options
author | Jademalo <386846+Jademalo@users.noreply.github.com> | 2021-10-22 04:42:48 +0100 |
---|---|---|
committer | Jademalo <386846+Jademalo@users.noreply.github.com> | 2021-10-22 04:42:48 +0100 |
commit | 46867c546d5df8c8b86b5ad46b1c149cc1ad0688 (patch) | |
tree | 74b3b1970c7a0c43d9b0604040a06cbdc6f91e8a /berry_fix/payload/include/global.h | |
parent | 6eaca5f0d02164c97f30babd4f686c66af28abfe (diff) |
Improve IDE Support
Diffstat (limited to 'berry_fix/payload/include/global.h')
-rw-r--r-- | berry_fix/payload/include/global.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/berry_fix/payload/include/global.h b/berry_fix/payload/include/global.h index ef161c249..bf0d71b69 100644 --- a/berry_fix/payload/include/global.h +++ b/berry_fix/payload/include/global.h @@ -6,7 +6,7 @@ // global.h from pokemon ruby // IDE support -#if defined(__APPLE__) || defined(__CYGWIN__) +#if defined (__APPLE__) || defined (__CYGWIN__) || defined (__INTELLISENSE__) #define _(x) x #define __(x) x #define INCBIN(x) {0} @@ -16,7 +16,7 @@ #define INCBIN_S8 INCBIN #define INCBIN_S16 INCBIN #define INCBIN_S32 INCBIN -#endif +#endif // IDE support // Prevent cross-jump optimization. #define BLOCK_CROSS_JUMP asm(""); |