EVERYTHING_CUSTOMIZED -> TRAINER_PARTY

This commit is contained in:
Eduardo Quezada 2023-07-05 18:31:08 -04:00
parent e8487961c7
commit b10b5fd9c3
3 changed files with 856 additions and 856 deletions

View File

@ -52,7 +52,7 @@ struct TrainerMon
bool8 isShiny : 1;
};
#define EVERYTHING_CUSTOMIZED(partyArray) partyArray, .partySize = ARRAY_COUNT(partyArray)
#define TRAINER_PARTY(partyArray) partyArray, .partySize = ARRAY_COUNT(partyArray)
struct Trainer
{

File diff suppressed because it is too large Load Diff

View File

@ -38,7 +38,7 @@ static const struct TrainerMon sTestParty1[] =
static const struct Trainer sTestTrainer1 =
{
.trainerName = _("Test1"),
.party = EVERYTHING_CUSTOMIZED(sTestParty1),
.party = TRAINER_PARTY(sTestParty1),
};
TEST("CreateNPCTrainerPartyForTrainer generates customized Pokémon")