summaryrefslogtreecommitdiff
path: root/home/audio.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2017-12-26 12:50:32 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2017-12-26 12:50:32 -0500
commit24f0e7d04501ddb000dfc1d06e716efca387bce8 (patch)
treebfa176d5634f0211ffcf7f313a7ec2078e3b612d /home/audio.asm
parentb5a8e3b3b32b2734d8fc642c77d96a0d4ef9c6d1 (diff)
Rename: emote_headers, sprite_headers, cry_headers, gfx_headers, tileset_headers
Diffstat (limited to 'home/audio.asm')
-rw-r--r--home/audio.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/audio.asm b/home/audio.asm
index 98e1fc40c..21e4f81f9 100644
--- a/home/audio.asm
+++ b/home/audio.asm
@@ -152,13 +152,13 @@ PlayCryHeader:: ; 3be3
ld a, [hROMBank]
push af
- ; Cry headers are stuck in one bank.
- ld a, BANK(CryHeaders)
+ ; Cries are stuck in one bank.
+ ld a, BANK(PokemonCries)
ld [hROMBank], a
ld [MBC3RomBank], a
- ld hl, CryHeaders
-rept 6
+ ld hl, PokemonCries
+rept 6 ; sizeof(mon_cry)
add hl, de
endr