diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-12-18 14:27:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 14:27:01 -0600 |
commit | 2c7948bae8cbe58882c1d4ad0669f33d56dac76b (patch) | |
tree | 71bae050175d7ea03df5be89d9bc62075c1d2fd6 /src/hall_of_fame.c | |
parent | c74468fd11b551e1babf18a4d320e114fe495bd8 (diff) | |
parent | d6b31346c3441d4d99f1fbf7d4c4de8573450872 (diff) |
Merge pull request #452 from Meowsy/pokemon-adding-easer
Add macros to simplify defining front animations and still pics.
Diffstat (limited to 'src/hall_of_fame.c')
-rw-r--r-- | src/hall_of_fame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hall_of_fame.c b/src/hall_of_fame.c index ad5673036..f7792e935 100644 --- a/src/hall_of_fame.c +++ b/src/hall_of_fame.c @@ -497,7 +497,7 @@ static void Task_Hof_InitTeamSaveData(u8 taskId) for (i = 0; i < HALL_OF_FAME_MAX_TEAMS; i++, lastSavedTeam++) { - if (lastSavedTeam->mon[0].species == 0) + if (lastSavedTeam->mon[0].species == SPECIES_NONE) break; } if (i >= HALL_OF_FAME_MAX_TEAMS) |