Revert GetPokedexRatingText argument type
This commit is contained in:
parent
8a9f04d0c3
commit
a9b0c28040
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
#ifndef GUARD_BIRCH_PC_H
|
||||
#define GUARD_BIRCH_PC_H
|
||||
|
||||
const u8 *GetPokedexRatingText(u32 count);
|
||||
const u8 *GetPokedexRatingText(u16 count);
|
||||
|
||||
#endif // GUARD_BIRCH_PC_H
|
||||
|
|
|
@ -48,7 +48,7 @@ static const u8 *const sBirchDexRatingTexts[BIRCH_DEX_STRINGS] =
|
|||
};
|
||||
|
||||
// This shows your Hoenn Pokedex rating and not your National Dex.
|
||||
const u8 *GetPokedexRatingText(u32 count)
|
||||
const u8 *GetPokedexRatingText(u16 count)
|
||||
{
|
||||
u32 i, j;
|
||||
u16 maxDex = HOENN_DEX_COUNT - 1;
|
||||
|
|
Loading…
Reference in a new issue