summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2019-04-04 08:49:01 -0400
committerhuderlem <huderlem@gmail.com>2019-04-04 19:26:45 -0500
commit53efbe2832f5e7a6973c3c5a6a6d7240ea5ecbdd (patch)
tree9ca007c5bd185eee43bcdb1bc69d4b646aad9982 /include/global.h
parenta47abb3949f8d1050379f51005368a5093c15113 (diff)
Finish decomp of union_room_chat
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/global.h b/include/global.h
index 864a7fa55..7b570d72e 100644
--- a/include/global.h
+++ b/include/global.h
@@ -18,13 +18,12 @@
#if defined (__APPLE__) || defined (__CYGWIN__) || defined (_MSC_VER)
#define _(x) x
#define __(x) x
-// CLion is an idiot
-#define INCBIN_U8(x) {0}
-#define INCBIN_U16(x) {0}
-#define INCBIN_U32(x) {0}
-#define INCBIN_S8(x) {0}
-#define INCBIN_S16(x) {0}
-#define INCBIN_S32(x) {0}
+#define INCBIN_U8 {0}
+#define INCBIN_U16 {0}
+#define INCBIN_U32 {0}
+#define INCBIN_S8 {0}
+#define INCBIN_S16 {0}
+#define INCBIN_S32 {0}
#endif // IDE support
#define ARRAY_COUNT(array) (size_t)(sizeof(array) / sizeof((array)[0]))