diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-07-04 20:54:24 -0400 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-07-04 20:54:24 -0400 |
commit | ed4a7038381702461b6f3b49dae97aaac4b59630 (patch) | |
tree | 467726df6481a353fd8c8395c001476a25e72c6c /include | |
parent | 1bea05746e828f4446b95799da9c52352ce1f761 (diff) |
Apply static modifier to static functions in PSS.
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon_summary_screen.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/pokemon_summary_screen.h b/include/pokemon_summary_screen.h index df136ac21..f70337677 100644 --- a/include/pokemon_summary_screen.h +++ b/include/pokemon_summary_screen.h @@ -7,10 +7,12 @@ extern const u8 * const gMoveDescriptionPointers[]; extern const u8 * const gNatureNamePointers[]; void ShowSelectMovePokemonSummaryScreen(struct Pokemon *, u8, u8, MainCallback, u16); -void ShowPokemonSummaryScreenSet40EF(u8 mode, struct BoxPokemon *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void)); u8 GetMoveSlotToReplace(void); void SummaryScreen_SetUnknownTaskId(u8 a0); void SummaryScreen_DestroyUnknownTask(void); +u8 GetLastViewedMonIndex(void); +void ShowPokemonSummaryScreen(struct Pokemon * party, u8 cursorPos, u8 lastIdx, void (*callback)(void), u8 a4); +void sub_8138B38(u8); // The Pokemon Summary Screen can operate in different modes. Certain features, // such as move re-ordering, are available in the different modes. @@ -54,10 +56,6 @@ enum PokemonSummaryScreenStat PSS_STAT_SPE }; -u8 GetLastViewedMonIndex(void); -void ShowPokemonSummaryScreen(struct Pokemon * party, u8 cursorPos, u8 lastIdx, void (*callback)(void), u8 a4); -void sub_8138B38(u8); - #define TAG_PSS_UNK_64 0x64 #define TAG_PSS_UNK_65 0x65 #define TAG_PSS_UNK_66 0x66 |