diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-08-05 10:54:56 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-08-05 10:54:56 -0400 |
commit | 18f29c566a7038a62f176d19b76e8db8e247d654 (patch) | |
tree | 75a49fe4a8725ea73191c4ca059ec89daf4f387e /include | |
parent | f5e18718d95cd6da312cd8f9bae19d356a54af12 (diff) |
through sub_81CF278
Diffstat (limited to 'include')
-rw-r--r-- | include/pokenav.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/pokenav.h b/include/pokenav.h index 31cb5cb17..276fe7262 100644 --- a/include/pokenav.h +++ b/include/pokenav.h @@ -7,16 +7,18 @@ typedef u32 (*LoopedTask)(s32 state); +struct PokenavMonList +{ + u8 boxId; + u8 monId; + u16 unk6; +}; + struct PokenavSub18 { u16 unk0; u16 unk2; - struct PokenavMonList - { - u8 boxId; - u8 monId; - u16 unk6; - } unk4[TOTAL_BOXES_COUNT * IN_BOX_COUNT + PARTY_SIZE]; + struct PokenavMonList unk4[TOTAL_BOXES_COUNT * IN_BOX_COUNT + PARTY_SIZE]; }; // Return values of LoopedTask functions. |