diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-15 17:29:02 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-15 17:29:02 -0400 |
commit | c996ca85bc4d3bd62e2b6d2a37809c4f5c46b2e1 (patch) | |
tree | 372afdf22c54691db085aeb01e3517ec8c19b7a1 /include | |
parent | be742e6741af58076ac09722d42d64eee3c8d763 (diff) |
pokemon_storage_system_8
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon_storage_system_internal.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/pokemon_storage_system_internal.h b/include/pokemon_storage_system_internal.h index 399e29f32..2f6cf20f1 100644 --- a/include/pokemon_storage_system_internal.h +++ b/include/pokemon_storage_system_internal.h @@ -8,7 +8,7 @@ #define IN_BOX_ROWS 6 #define MAX_MON_ICONS 40 - +#define MAX_ITEM_ICONS 3 #define MAX_MENU_ITEMS 7 enum @@ -366,7 +366,7 @@ struct PokemonStorageSystemData /* 21db */ u8 itemName[20]; /* 21ef */ u8 inBoxMovingMode; /* 21f0 */ u16 field_2200; - /* 21f4 */ struct UnkStorageStruct field_2204[3]; + /* 21f4 */ struct UnkStorageStruct field_2204[MAX_ITEM_ICONS]; /* 2224 */ u16 movingItem; /* 2226 */ u16 field_2236; /* 2228 */ struct PssQuestLogBuffer qlogBuffer; @@ -510,5 +510,7 @@ void sub_8094CD4(u8 *arg0, u8 *arg1); void sub_8094D40(void); void sub_8092BAC(bool8 arg0); void DestroyBoxMonIconAtPosition(u8 boxPosition); +void SetBoxMonIconObjMode(u8 cursorPos, u8 objMode); +void SetPartyMonIconObjMode(u8 cursorPos, u8 objMode); #endif //GUARD_POKEMON_STORAGE_SYSTEM_INTERNAL_H |