diff options
author | Jademalo <386846+Jademalo@users.noreply.github.com> | 2021-10-22 04:30:33 +0100 |
---|---|---|
committer | Jademalo <386846+Jademalo@users.noreply.github.com> | 2021-10-22 04:30:33 +0100 |
commit | eb860a368e974860db6b3e56b57e2eff186e4470 (patch) | |
tree | b680f59f4c36d9d822007777a3f5992d121e6cc6 /include/global.h | |
parent | 0fbf5f59b3e142ccfae0cb193f475ecd704c8746 (diff) |
Improve IDE support
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/global.h b/include/global.h index d14aa60f4..bcd037cb2 100644 --- a/include/global.h +++ b/include/global.h @@ -20,11 +20,9 @@ #define NAKED __attribute__((naked)) // IDE support -#if defined (__APPLE__) || defined (__CYGWIN__) || defined (_MSC_VER) +#if defined (__APPLE__) || defined (__CYGWIN__) || defined (__INTELLISENSE__) #define _(x) x #define __(x) x - -// Fool CLion IDE #define INCBIN(x) {0} #define INCBIN_U8 INCBIN #define INCBIN_U16 INCBIN |