diff --git a/include/global.h b/include/global.h index ab5162e6de..92450646e5 100644 --- a/include/global.h +++ b/include/global.h @@ -112,15 +112,15 @@ f; \ }) +// Branch defines: +// Used by other branches to detect each other. +#define ITEM_EXPANSION + #define ROUND_BITS_TO_BYTES(numBits)(((numBits) / 8) + (((numBits) % 8) ? 1 : 0)) #define DEX_FLAGS_NO (ROUND_BITS_TO_BYTES(NUM_SPECIES)) #define NUM_FLAG_BYTES (ROUND_BITS_TO_BYTES(FLAGS_COUNT)) -// Branch defines: -// Used by other branches to detect each other. -#define ITEM_EXPANSION - struct Coords8 { s8 x;