Revert GetPokedexRatingText argument type

This commit is contained in:
Bassoonian 2024-01-07 23:58:26 +01:00
parent 8a9f04d0c3
commit a9b0c28040
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#ifndef GUARD_BIRCH_PC_H #ifndef GUARD_BIRCH_PC_H
#define GUARD_BIRCH_PC_H #define GUARD_BIRCH_PC_H
const u8 *GetPokedexRatingText(u32 count); const u8 *GetPokedexRatingText(u16 count);
#endif // GUARD_BIRCH_PC_H #endif // GUARD_BIRCH_PC_H

View file

@ -48,7 +48,7 @@ static const u8 *const sBirchDexRatingTexts[BIRCH_DEX_STRINGS] =
}; };
// This shows your Hoenn Pokedex rating and not your National Dex. // This shows your Hoenn Pokedex rating and not your National Dex.
const u8 *GetPokedexRatingText(u32 count) const u8 *GetPokedexRatingText(u16 count)
{ {
u32 i, j; u32 i, j;
u16 maxDex = HOENN_DEX_COUNT - 1; u16 maxDex = HOENN_DEX_COUNT - 1;