diff options
author | golem galvanize <golemgalvanize@github.com> | 2018-12-18 05:38:08 -0500 |
---|---|---|
committer | golem galvanize <golemgalvanize@github.com> | 2018-12-18 05:38:08 -0500 |
commit | 8781d969ff0a702b21ed00529bf13baa4dd9bf6d (patch) | |
tree | 4b46a0216b09e1cb56f13c00095386ee5923512d /include | |
parent | c259ee46d3e0b0fc7e9a43e6448ef74247fedbf0 (diff) |
finish party_menu
Diffstat (limited to 'include')
-rw-r--r-- | include/party_menu.h | 4 | ||||
-rw-r--r-- | include/pokemon_storage_system.h | 1 | ||||
-rwxr-xr-x | include/pokemon_summary_screen.h | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/include/party_menu.h b/include/party_menu.h index 8b5423bb7..27a043cb6 100644 --- a/include/party_menu.h +++ b/include/party_menu.h @@ -27,10 +27,10 @@ enum }; struct Struct203CEC8 { - MainCallback unk0; + MainCallback exitCallback; TaskFunc unk4; u8 unk8_0:4; - u8 unk8_1:2; + u8 mode:2; u8 unk8_2:2; s8 unk9; s8 unkA; diff --git a/include/pokemon_storage_system.h b/include/pokemon_storage_system.h index 9b5358f06..7f618498b 100644 --- a/include/pokemon_storage_system.h +++ b/include/pokemon_storage_system.h @@ -84,5 +84,6 @@ u32 GetBoxMonDataFromAnyBox(u8 boxId, u8 monPosition, u32 request); bool8 CheckFreePokemonStorageSpace(void); u8 StorageGetCurrentBox(void); u8 sub_80D214C(struct BoxPokemon *a, u8 b, u8 c, u8 d); +bool32 sub_80D23A8(u16 move); #endif // GUARD_POKEMON_STORAGE_SYSTEM_H diff --git a/include/pokemon_summary_screen.h b/include/pokemon_summary_screen.h index 926e5ff53..63d740949 100755 --- a/include/pokemon_summary_screen.h +++ b/include/pokemon_summary_screen.h @@ -1,6 +1,8 @@ #ifndef GUARD_POKEMON_SUMMARY_SCREEN_H #define GUARD_POKEMON_SUMMARY_SCREEN_H +extern u8 gUnknown_0203CF20; + void ShowPokemonSummaryScreen(u8 mode, void *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void)); void sub_81C4F98(u8, void(*)(void)); void ShowSelectMovePokemonSummaryScreen(struct Pokemon *, u8, u8, MainCallback, u16); |