diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-14 21:34:03 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-14 21:34:03 -0400 |
commit | 7ce151910a3075757813ae3a870f30b5809e669c (patch) | |
tree | d59c0c4e7376f532dd0788fb253deb901fa08b5e /src/pokemon_storage_system_2.c | |
parent | 21e006d680b2cf3b511e2f346cf997ab2fbbee47 (diff) |
through debug_80C43A8
Diffstat (limited to 'src/pokemon_storage_system_2.c')
-rw-r--r-- | src/pokemon_storage_system_2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pokemon_storage_system_2.c b/src/pokemon_storage_system_2.c index 0905c185b..762850e06 100644 --- a/src/pokemon_storage_system_2.c +++ b/src/pokemon_storage_system_2.c @@ -335,11 +335,11 @@ void debug_sub_80A4300(void) } extern void (*unk_2038794)(void); -extern u32 unk_2038798; +extern struct Pokemon * unk_2038798; -extern void unref_sub_809CB94(); +extern void debug_sub_809CB94(struct Pokemon *); -void debug_sub_80A433C(u32 a, void (*b)(void)) +void debug_sub_80A433C(struct Pokemon * a, void (*b)(void)) { unk_2038794 = b; unk_2038798 = a; @@ -351,7 +351,7 @@ void debug_sub_80A435C(void) switch (gPokemonStorageSystemPtr->unk_0004) { case 0: - unref_sub_809CB94(unk_2038798); + debug_sub_809CB94(unk_2038798); BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 16, 0); gPokemonStorageSystemPtr->unk_0004++; break; |