diff options
author | golem galvanize <golemgalvanize@github.com> | 2018-02-07 19:31:33 -0500 |
---|---|---|
committer | golem galvanize <golemgalvanize@github.com> | 2018-02-07 19:31:33 -0500 |
commit | 03f8d0d6ce48a302a21d7ef99eed9825800a6394 (patch) | |
tree | cb0240ef6e2468ee49730a3b620d440e5e88d4bc /include/global.h | |
parent | 4a903279df847024148b823990a317e79bc23c9f (diff) | |
parent | 250538fcae79e4d11c6efb4f4bfb34080f72bd48 (diff) |
Merge branch 'master' of https://github.com/pret/pokeemerald into decompile_main_menu
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index c575d40cd..0e5615eb0 100644 --- a/include/global.h +++ b/include/global.h @@ -24,7 +24,7 @@ #define INCBIN_S32 {0} #endif // __APPLE__ -#define ARRAY_COUNT(array) (sizeof(array) / sizeof((array)[0])) +#define ARRAY_COUNT(array) (size_t)(sizeof(array) / sizeof((array)[0])) // useful math macros |