diff options
author | huderlem <huderlem@gmail.com> | 2019-10-15 16:30:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 16:30:27 -0500 |
commit | a0b3f5d9e34e65c1948325bd4177a734bfde6bb4 (patch) | |
tree | edd30aaf0011fa31b0dd75fee2a670b2215390e2 /src/main_menu.c | |
parent | 07ac727c6d0c54d5d0f9f2a1f4c11b81f9d64cb4 (diff) | |
parent | 928cdf2531e74df2432ec8d602c4c2d2fee14eb1 (diff) |
Merge pull request #833 from GriffinRichards/doc-inc2
Document .incs split from event_scripts Round 2
Diffstat (limited to 'src/main_menu.c')
-rw-r--r-- | src/main_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main_menu.c b/src/main_menu.c index 0cb91ae09..95c64b3bd 100644 --- a/src/main_menu.c +++ b/src/main_menu.c @@ -2172,9 +2172,9 @@ static void MainMenu_FormatSavegamePokedex(void) if (FlagGet(FLAG_SYS_POKEDEX_GET) == TRUE) { if (IsNationalPokedexEnabled()) - dexCount = GetNationalPokedexCount(1); + dexCount = GetNationalPokedexCount(FLAG_GET_CAUGHT); else - dexCount = GetHoennPokedexCount(1); + dexCount = GetHoennPokedexCount(FLAG_GET_CAUGHT); StringExpandPlaceholders(gStringVar4, gText_ContinueMenuPokedex); AddTextPrinterParameterized3(2, 1, 0, 33, sTextColor_PlayerGenderColor, -1, gStringVar4); ConvertIntToDecimalStringN(str, dexCount, STR_CONV_MODE_LEFT_ALIGN, 3); |