diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-06-07 17:06:59 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-06-07 17:15:01 -0500 |
commit | dc6fb7be6a6391f705b052906d0b566e9eb0891e (patch) | |
tree | eca947bf0c7c05a14cc41069942a63304e28b280 /src/script_pokemon_util_80F99CC.c | |
parent | 49a5bda839e5873e74017192ba1a33851897b025 (diff) |
Fix fake-matching DrawMonDescriptorStatus()
Diffstat (limited to 'src/script_pokemon_util_80F99CC.c')
-rw-r--r-- | src/script_pokemon_util_80F99CC.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script_pokemon_util_80F99CC.c b/src/script_pokemon_util_80F99CC.c index 7612c44e1..b292265a6 100644 --- a/src/script_pokemon_util_80F99CC.c +++ b/src/script_pokemon_util_80F99CC.c @@ -144,11 +144,11 @@ void sub_80F9C00(void) case 0: case 3: case 4: - sub_806BC3C(i, 0x7E); + DrawMonDescriptorStatus(i, 0x7E); break; case 1: case 2: - sub_806BC3C(i, 0x70); + DrawMonDescriptorStatus(i, 0x70); break; } } @@ -246,9 +246,9 @@ void sub_80F9E1C(void) for (i = 0; i < gPlayerPartyCount; i++) { if (!sub_8040574(&gPlayerParty[i])) - sub_806BC3C(i, 0x9A); + DrawMonDescriptorStatus(i, 0x9A); else - sub_806BC3C(i, 0x8C); + DrawMonDescriptorStatus(i, 0x8C); } } |