From bacabf03a8b9da18d86c09ab1b3882df1f2b503a Mon Sep 17 00:00:00 2001 From: Eduardo Quezada D'Ottone Date: Mon, 9 Nov 2020 13:45:08 -0300 Subject: [PATCH] Review changes. --- include/global.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;