diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2018-12-30 11:07:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-30 11:07:50 -0500 |
commit | 378667d9ecd80940bb6ef59781c82bd38ce38650 (patch) | |
tree | 7be6742e4f36de457d0a317ad58a01b11639147d /home/battle.asm | |
parent | f7ce402d2adb70898205fb5411b00ea49a068841 (diff) | |
parent | 930d285fab94fde5e061efa80dc41d478f19fcff (diff) |
Merge pull request #584 from mid-kid/master
Fix comments around BANK() statements
Diffstat (limited to 'home/battle.asm')
-rw-r--r-- | home/battle.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/home/battle.asm b/home/battle.asm index 407ef44c8..37c2e7b1c 100644 --- a/home/battle.asm +++ b/home/battle.asm @@ -190,7 +190,8 @@ GetBattleAnimPointer:: ld a, [hl] ld [wBattleAnimAddress + 1], a - ld a, BANK(BattleAnimCommands) + ; ClearBattleAnims is the only function that calls this... + ld a, BANK(ClearBattleAnims) rst Bankswitch ret |