Moved ABILITY_NAME_LENGTH back to include/constants/global.h to keep in line with upstream pret

This commit is contained in:
Eduardo Quezada 2022-08-23 08:25:27 -04:00
parent 4c5acca0ce
commit 7c7887aa65
2 changed files with 5 additions and 6 deletions

View File

@ -22,12 +22,6 @@ struct MultiPartnerMenuPokemon
/*0x1D*/ u8 language;
};
#if B_EXPANDED_ABILITY_NAMES
#define ABILITY_NAME_LENGTH 16
#else
#define ABILITY_NAME_LENGTH 12
#endif
// defines for the 'DoBounceEffect' function
#define BOUNCE_MON 0x0
#define BOUNCE_HEALTHBOX 0x1

View File

@ -109,6 +109,11 @@
#define WONDER_CARD_BODY_TEXT_LINES 4
#define WONDER_NEWS_BODY_TEXT_LINES 10
#define TYPE_NAME_LENGTH 6
#if B_EXPANDED_ABILITY_NAMES == TRUE
#define ABILITY_NAME_LENGTH 16
#else
#define ABILITY_NAME_LENGTH 12
#endif
#define TRAINER_NAME_LENGTH 10
#define MAX_STAMP_CARD_STAMPS 7