diff options
author | Zumi Daxuya <daxuya.zumi+code@protonmail.com> | 2021-05-31 14:22:22 +0700 |
---|---|---|
committer | Zumi Daxuya <daxuya.zumi+code@protonmail.com> | 2021-05-31 14:22:22 +0700 |
commit | d3da336c870b2091afd3c42b7911cd8cecd14a7e (patch) | |
tree | 6f43b3a8601521e91476b6fa6efbc64566e12887 /audio/engine.asm | |
parent | 58df9a84ec99b0c340a3387c5c9bc758dbabf4c4 (diff) |
Reorganize cry and SFX more closely to pokegold
Diffstat (limited to 'audio/engine.asm')
-rw-r--r-- | audio/engine.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/engine.asm b/audio/engine.asm index f722621..565facb 100644 --- a/audio/engine.asm +++ b/audio/engine.asm @@ -2563,7 +2563,7 @@ _PlayCryHeader:: inc hl ld [hl], d - ld hl, CryHeaderPointers + ld hl, Cries add hl, de add hl, de add hl, de @@ -2658,7 +2658,7 @@ _PlaySFX:: ld [hl], e inc hl ld [hl], d - ld hl, SFXPointers + ld hl, SFX ; three byte pointers add hl, de add hl, de @@ -2696,7 +2696,7 @@ _PlaySFX:: inc hl ld [hl], d - ld hl, SFXPointers + ld hl, SFX add hl, de add hl, de add hl, de @@ -2775,7 +2775,7 @@ _PlaySFX:: ld [hl], e inc hl ld [hl], d - ld hl, SFXPointers + ld hl, SFX add hl, de add hl, de add hl, de |