diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-06-12 01:42:19 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-06-12 01:42:19 -0500 |
commit | 48e0125bd68054f81e97a5eec14f145dc3c921d7 (patch) | |
tree | 700bf0a94c566a6374ecff1adb87aec060609ac2 /engine/battle/animations.asm | |
parent | 7e12ca56a8d04d33f3945bb5b981c311fcdd44ef (diff) |
Remove some leftover address comments
Diffstat (limited to 'engine/battle/animations.asm')
-rwxr-xr-x | engine/battle/animations.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/animations.asm b/engine/battle/animations.asm index ea5738bc..d6392522 100755 --- a/engine/battle/animations.asm +++ b/engine/battle/animations.asm @@ -1944,7 +1944,7 @@ _AnimationSlideMonOff: ; functions below catch it by checking if the tile number is within the valid ; range and if not, replacing it with a blank tile. -.PlayerNextTile ; 79633 (1e:5633) +.PlayerNextTile ld a, [hl] add 7 ; This is a bug. The lower right corner tile of the mon back pic is blanked @@ -1955,7 +1955,7 @@ _AnimationSlideMonOff: ld a, " " ret -.EnemyNextTile ; 7963c (1e:563c) +.EnemyNextTile ld a, [hl] sub 7 ; This has the same problem as above, but it has no visible effect because |