diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-09-09 08:55:50 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-09-09 08:55:50 -0400 |
commit | 8bbb75fba0d8dc81be6cfc88a4d7fd932efa900e (patch) | |
tree | d652ba22ccc266cddb80af765c1bd6c7160bf62d | |
parent | e011ca7ac919efe05d5c965c84e14abd19dfaacd (diff) |
Move some function labels to their proper headers
-rw-r--r-- | include/party_menu.h | 1 | ||||
-rw-r--r-- | include/pokemon.h | 1 | ||||
-rw-r--r-- | include/pokemon_icon.h | 1 | ||||
-rw-r--r-- | include/pokemon_summary_screen.h | 1 |
4 files changed, 2 insertions, 2 deletions
diff --git a/include/party_menu.h b/include/party_menu.h index c9e6e51f5..e3f5c62f3 100644 --- a/include/party_menu.h +++ b/include/party_menu.h @@ -169,7 +169,6 @@ void DoRareCandyItemEffect(u8, u16, TaskFunc); void Task_RareCandy1(u8); void Task_RareCandy2(u8); void sub_8070848(u8 taskId); -void sub_809D62C(struct Sprite *); void sub_806CA60(u8 taskId); void sub_806CD5C(u8 taskId); void DoTakeMail(u8 taskId, TaskFunc func); diff --git a/include/pokemon.h b/include/pokemon.h index cbeef1b9b..c4347a15b 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -601,5 +601,6 @@ s8 sub_8040A54(struct Pokemon *, u8); u16 GetMonEVCount(struct Pokemon *); u16 GetEvolutionTargetSpecies(struct Pokemon *, u8, u16); const struct CompressedSpritePalette *sub_8040990(struct Pokemon *); +bool8 sub_8040A3C(u16); #endif // GUARD_POKEMON_H diff --git a/include/pokemon_icon.h b/include/pokemon_icon.h index 6f00619fc..2fbf9f700 100644 --- a/include/pokemon_icon.h +++ b/include/pokemon_icon.h @@ -11,5 +11,6 @@ void sub_809D580(u16); void sub_809D608(u16); void UpdateMonIconFrame(struct Sprite *sprite); void sub_809D824(struct Sprite *, u8); +void sub_809D62C(struct Sprite *); #endif // GUARD_POKEMON_ICON_H diff --git a/include/pokemon_summary_screen.h b/include/pokemon_summary_screen.h index 845e39990..c1b99c367 100644 --- a/include/pokemon_summary_screen.h +++ b/include/pokemon_summary_screen.h @@ -13,6 +13,5 @@ u8 *sub_80A1E9C(u8 *dest, const u8 *src, u8); u8 *PokemonSummaryScreen_CopyPokemonLevel(u8 *dest, u8 level); u8 PokemonSummaryScreen_CheckOT(struct Pokemon *pokemon); bool8 CheckPartyPokerus(struct Pokemon *, u8); -bool8 sub_8040A3C(u16); #endif // GUARD_POKEMON_SUMMARY_SCREEN_H |