diff options
author | Jademalo <386846+Jademalo@users.noreply.github.com> | 2021-10-22 04:44:46 +0100 |
---|---|---|
committer | Jademalo <386846+Jademalo@users.noreply.github.com> | 2021-10-22 04:44:46 +0100 |
commit | 4fbae0d4c9f4deb6bc685fb703653fb8449dacc1 (patch) | |
tree | 328f4efe1868b93c60f276a5c9e8f2e6e48549a3 /include/global.h | |
parent | 87db09596ad9295adbc29adc974bef22d536b2c7 (diff) |
Improve IDE Support
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/global.h b/include/global.h index 3a26a2c3e..10682ecb2 100644 --- a/include/global.h +++ b/include/global.h @@ -9,7 +9,7 @@ #include "constants/global.h" // IDE support -#if defined(__APPLE__) || defined(__CYGWIN__) +#if defined (__APPLE__) || defined (__CYGWIN__) || defined (__INTELLISENSE__) #define _(x) x #define __(x) x #define INCBIN(x) {0} @@ -19,7 +19,7 @@ #define INCBIN_S8 INCBIN #define INCBIN_S16 INCBIN #define INCBIN_S32 INCBIN -#endif +#endif // IDE support // For debug menu translations. // DTR("こんにちは", "Hello") will expand to "Hello" with DEBUG_FIX, |