diff options
author | shinny456 <shinny456@users.noreply.github.com> | 2018-12-17 18:12:00 -0500 |
---|---|---|
committer | shinny456 <shinny456@users.noreply.github.com> | 2018-12-17 18:12:00 -0500 |
commit | 00be991c66d37d090792db8bc1e4c1b9f9e88536 (patch) | |
tree | 05998c3a63c35df83f3d56116fb20f605066ae96 /src/battle/anim/unused_6.c | |
parent | 968218a469d3de8cf1bfad9e791daec01129e501 (diff) |
gAnimBankAttacker/Target to gBattleAnimAttacker/Target
Diffstat (limited to 'src/battle/anim/unused_6.c')
-rw-r--r-- | src/battle/anim/unused_6.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/battle/anim/unused_6.c b/src/battle/anim/unused_6.c index ab5678641..27957f27d 100644 --- a/src/battle/anim/unused_6.c +++ b/src/battle/anim/unused_6.c @@ -5,8 +5,8 @@ #include "sound.h" extern s16 gBattleAnimArgs[]; -extern u8 gAnimBankAttacker; -extern u8 gAnimBankTarget; +extern u8 gBattleAnimAttacker; +extern u8 gBattleAnimTarget; extern void sub_80CEF44(u8 bank, struct Sprite* sprite); @@ -41,9 +41,9 @@ void sub_80CF2D0(struct Sprite* sprite) { u8 bank; if (gBattleAnimArgs[0] == 0) - bank = gAnimBankAttacker; + bank = gBattleAnimAttacker; else - bank = gAnimBankTarget; + bank = gBattleAnimTarget; sub_80CEF44(bank, sprite); sprite->data[0] = 0; |