diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-12-24 01:33:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-24 01:33:57 -0600 |
commit | 980b055bf09215d89870730fa8cea2ac207e2260 (patch) | |
tree | 60c96f448c076fae793c378cd2327779b5821718 /src/pokemon_summary_screen.c | |
parent | f835a356622b0038d82bd45fe698d5663091fcde (diff) | |
parent | 72aa9eb5a91bc36514eb5cf922c5cde209fba8c5 (diff) |
Merge pull request #471 from DizzyEggg/clean
Get rid of externs and add includes
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rw-r--r-- | src/pokemon_summary_screen.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index a72e83b96..975b5e803 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -5,6 +5,7 @@ #include "frontier_util.h" #include "battle_message.h" #include "battle_tent.h" +#include "battle_factory.h" #include "bg.h" #include "contest.h" #include "contest_effect.h" @@ -45,8 +46,6 @@ #include "constants/songs.h" #include "constants/species.h" -extern bool8 sub_81A6BF4(void); - static EWRAM_DATA struct UnkSummaryStruct { /*0x00*/ union { @@ -129,7 +128,6 @@ struct UnkStruct_61CC04 }; // forward declarations -bool8 IsMultiBattle(void); static bool8 SummaryScreen_LoadGraphics(void); static void SummaryScreen_LoadingCB2(void); static void InitBGs(void); @@ -238,8 +236,6 @@ static void sub_81C4568(u8 a, u8 b); static u8 sub_81C45F4(struct Pokemon *a, s16 *b); static u8 sub_81C47B4(struct Pokemon *unused); static void sub_81C4844(struct Sprite *); -void SummaryScreen_SetUnknownTaskId(u8 a); -void SummaryScreen_DestroyUnknownTask(void); static void sub_81C48F0(void); static void CreateMonMarkingsSprite(struct Pokemon *mon); static void RemoveAndCreateMonMarkingsSprite(struct Pokemon *mon); |