diff options
author | Melody <melody@pallet.town> | 2018-12-03 08:01:52 -0500 |
---|---|---|
committer | Melody <melody@pallet.town> | 2018-12-03 08:01:52 -0500 |
commit | 2779421ad479312eba5a0fc5bb993473e83465ee (patch) | |
tree | a51e29081eac2e8ee9da240d8a58705a1a0d3ef8 /src/trainer_pokemon_sprites.c | |
parent | 52fa5137c95a3bbdf3bf29d594e66948bf7382ae (diff) |
fix brendan/may/wally consistency issues
Diffstat (limited to 'src/trainer_pokemon_sprites.c')
-rw-r--r-- | src/trainer_pokemon_sprites.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trainer_pokemon_sprites.c b/src/trainer_pokemon_sprites.c index 18c02350f..040310901 100644 --- a/src/trainer_pokemon_sprites.c +++ b/src/trainer_pokemon_sprites.c @@ -404,9 +404,9 @@ u16 PlayerGenderToFrontTrainerPicId_Debug(u8 gender, bool8 getClass) switch (gender) { default: - return gFacilityClassToPicIndex[FACILITY_CLASS_PKMN_TRAINER_MAY]; + return gFacilityClassToPicIndex[FACILITY_CLASS_MAY]; case MALE: - return gFacilityClassToPicIndex[FACILITY_CLASS_PKMN_TRAINER_BRENDAN]; + return gFacilityClassToPicIndex[FACILITY_CLASS_BRENDAN]; } } return gender; |