summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2020-06-14 19:04:24 -0400
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2020-06-14 19:04:24 -0400
commit7cabc3d1a51a48a31b02d1c24b26da2a5c654f35 (patch)
tree22604fd633f5a4b8d76d11642e00940813c806bd /include
parentbc143a695d54f7ac663b2b3f1ea98c53b21842e2 (diff)
pokemon_summary_screen.c, part 2.
Also fix prototype of MenuHelpers_CallLinkSomething.
Diffstat (limited to 'include')
-rw-r--r--include/menu_helpers.h2
-rw-r--r--include/pokemon_summary_screen.h11
2 files changed, 12 insertions, 1 deletions
diff --git a/include/menu_helpers.h b/include/menu_helpers.h
index 0c0623cc0..2aeef23e9 100644
--- a/include/menu_helpers.h
+++ b/include/menu_helpers.h
@@ -15,7 +15,7 @@ struct YesNoFuncTable
};
bool16 RunTextPrinters_CheckActive(u8 textPrinterId);
-bool32 MenuHelpers_CallLinkSomething(void);
+bool8 MenuHelpers_CallLinkSomething(void);
bool8 sub_80BF748(void);
bool8 MenuHelpers_LinkSomething(void);
void SetVBlankHBlankCallbacksToNull(void);
diff --git a/include/pokemon_summary_screen.h b/include/pokemon_summary_screen.h
index 4dd7881bd..03a10fcde 100644
--- a/include/pokemon_summary_screen.h
+++ b/include/pokemon_summary_screen.h
@@ -34,6 +34,17 @@ enum PokemonSummaryScreenPage
PSS_PAGE_MOVES_INFO,
};
+enum PokemonSummaryScreenState3270
+{
+ PSS_STATE3270_0,
+ PSS_STATE3270_1,
+ PSS_STATE3270_2,
+ PSS_STATE3270_3,
+ PSS_STATE3270_4,
+ PSS_STATE3270_5,
+ PSS_STATE3270_6
+};
+
s32 GetLastViewedMonIndex(void);
void ShowPokemonSummaryScreen(struct Pokemon * party, u8 cursorPos, u8 lastIdx, void (*callback)(void), u8 a4);
void sub_8138B38(u8);