diff --git a/include/constants/pokemon_config.h b/include/constants/pokemon_config.h index b43e4327f6..243543162c 100644 --- a/include/constants/pokemon_config.h +++ b/include/constants/pokemon_config.h @@ -1,9 +1,6 @@ #ifndef GUARD_CONSTANTS_POKEMON_CONFIG_H #define GUARD_CONSTANTS_POKEMON_CONFIG_H -// Used by other branches to communicate with each other. -#define POKEMON_EXPANSION - #ifndef GEN_3 #define GEN_3 0 #define GEN_4 1 diff --git a/include/global.h b/include/global.h index 1dc2ed01e7..c5a8d4bedf 100644 --- a/include/global.h +++ b/include/global.h @@ -112,6 +112,10 @@ f; \ }) +// Branch defines: +// Used by other branches to communicate with each other. +#define POKEMON_EXPANSION + #define ROUND_BITS_TO_BYTES(numBits)(((numBits) / 8) + (((numBits) % 8) ? 1 : 0)) #define DEX_FLAGS_NO (ROUND_BITS_TO_BYTES(POKEMON_SLOTS_NUMBER))