Small variable documentation update

This commit is contained in:
Fex Collects 2025-03-03 04:47:02 +00:00
parent 2e7ba57cc4
commit 4ef2fb4a44
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ s16 GetAlphabetParentNo(s16 index, s32 r1);
s16 GetInternalNo(s16 index);
s32 CalculateEXPGain(s16 index, s32 level);
s16 GetPokemonEvolveConditons(s16 index, unkEvolve *);
u8 GetPokemonOverworldPalette(s16 index, u32 r1);
u8 GetPokemonOverworldPalette(s16 index, bool32 recolorShopKecleon);
bool8 IsPokemonDialogueSpriteAvail(s16 index, s32 spriteId);
OpenedFile *OpenPokemonDialogueSpriteFile(s16 index);
OpenedFile *GetDialogueSpriteDataPtr(s32 index);

View File

@ -890,10 +890,10 @@ s16 GetPokemonEvolveConditions(s16 index, unkEvolve *r1)
return index;
}
u8 GetPokemonOverworldPalette(s16 index, u32 r1)
u8 GetPokemonOverworldPalette(s16 index, bool32 recolorShopKecleon)
{
s32 id = SpeciesId(index);
if (r1 != 0)
if (recolorShopKecleon)
{
return 10;
}