diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2022-03-06 14:41:40 -0600 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2022-03-11 10:14:32 -0800 |
commit | aa939e0955ec683efb5dd963430eace695a26af9 (patch) | |
tree | 34639fb9579dc71c33e5a209ecfa8c60c01230ac /src/friend_list_menu.c | |
parent | a5c90b097045a50df6ecb7cc37ce50f3fc9f142f (diff) |
All saving functions decomped
- poke_sub_4 was determined to be Dungeon Index/Floor
- Clean up code that references these functions
Diffstat (limited to 'src/friend_list_menu.c')
-rw-r--r-- | src/friend_list_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/friend_list_menu.c b/src/friend_list_menu.c index 9310665..142aeca 100644 --- a/src/friend_list_menu.c +++ b/src/friend_list_menu.c @@ -113,7 +113,7 @@ void sub_8026A94(void) static inline bool8 sub_8026AB0_sub(void) { - if (gUnknown_203B2B8->unk18->unk4.unk4 == 0x44 || gUnknown_203B2B8->unk18->unk4.unk4 == 0x45) + if (gUnknown_203B2B8->unk18->unk4.dungeonIndex == 0x44 || gUnknown_203B2B8->unk18->unk4.dungeonIndex == 0x45) return TRUE; else return FALSE; @@ -344,7 +344,7 @@ u32 sub_8026E88(struct PokemonStruct *r0) u8 iVar3; if(r0->unk2 == 0) { - iVar3 = (r0->unk4.unk4 == 0x41); + iVar3 = (r0->unk4.dungeonIndex == 0x41); if(iVar3 != 0) if(sub_80023E4(0x8) == 0) return 0; @@ -361,7 +361,7 @@ u32 sub_8026EB8(struct PokemonStruct *r0) if(sub_808D3F8() != r0) if(r0->unk2 == 0) { - iVar3 = (r0->unk4.unk4 == 0x41); + iVar3 = (r0->unk4.dungeonIndex == 0x41); if(iVar3 != 0) { if(sub_80023E4(0x8) != 0) |