diff options
Diffstat (limited to 'include/battle_party_menu.h')
-rw-r--r-- | include/battle_party_menu.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/include/battle_party_menu.h b/include/battle_party_menu.h index 5112c7b3c..a7d46a462 100644 --- a/include/battle_party_menu.h +++ b/include/battle_party_menu.h @@ -3,17 +3,17 @@ #include "task.h" -// TODO: Unify all of the 0x0201B000 structs -struct Struct201B000 +struct PartyMenuItem { - u8 filler0[0x259]; - u8 unk259; - u8 filler25A[6]; - u8 unk260; - u8 filler261[1]; - u8 unk262; - s16 unk264; - s16 unk266; + const u8 *text; + TaskFunc func; +}; + +struct PartyPopupMenu +{ + u8 unk0; + u8 unk1; + const u8 *unk4; }; extern u8 unk_2000000[]; @@ -21,6 +21,5 @@ extern u8 unk_2000000[]; void SetUpBattlePokemonMenu(u8); #define EWRAM_1609D unk_2000000[0x1609D] -#define EWRAM_1B000 (*(struct Struct201B000 *)(unk_2000000 + 0x1B000)) #endif |