diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-09-02 15:17:31 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-09-02 15:17:31 -0400 |
commit | 2fce2765829380a244a84b5ccf6f08086f820c9a (patch) | |
tree | 7fa145091f674904db22774494f93ebd62aefde3 /arm9/src/pokemon.c | |
parent | f6a2e70835d549685d6a6ebf6b861c7582234878 (diff) |
Decompile seal_case
Diffstat (limited to 'arm9/src/pokemon.c')
-rw-r--r-- | arm9/src/pokemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arm9/src/pokemon.c b/arm9/src/pokemon.c index 7fe8191a..b3e53d1a 100644 --- a/arm9/src/pokemon.c +++ b/arm9/src/pokemon.c @@ -565,7 +565,7 @@ u32 GetMonDataInternal(struct Pokemon * pokemon, int attr, void * dest) Mail_copy(&pokemon->party.mail, dest); return 1; case MON_DATA_SEAL_COORDS: - FUN_02029C74(&pokemon->party.sealCoords, dest); + CapsuleArray_copy(&pokemon->party.sealCoords, dest); return 1; default: return GetBoxMonDataInternal(&pokemon->box, attr, dest); @@ -1053,7 +1053,7 @@ void SetMonDataInternal(struct Pokemon * pokemon, int attr, void * value) Mail_copy((const struct Mail *)value, &pokemon->party.mail); break; case MON_DATA_SEAL_COORDS: - FUN_02029C74((CapsuleArray *)value, &pokemon->party.sealCoords); + CapsuleArray_copy((CapsuleArray *)value, &pokemon->party.sealCoords); break; default: SetBoxMonDataInternal(&pokemon->box, attr, value); |