diff options
author | yenatch <yenatch@gmail.com> | 2014-02-06 20:54:34 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-02-06 21:22:45 -0500 |
commit | e57309618d50ddd281bb646283edb7ad3acc1d10 (patch) | |
tree | ae1561d07ce297a6b7d3d8502ef3ed4d9819d6a7 | |
parent | 236f914bbedab1654dfeaa1fe7f95cefd514f4e4 (diff) |
Include cries and sound effects in audio.asm
-rw-r--r-- | audio.asm | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -155,12 +155,12 @@ INCLUDE "audio/music/postcredits.asm" SECTION "Sound Effects", ROMX, BANK[SOUND_EFFECTS] -INCBIN "baserom.gbc",$f0941, $f2787 - $f0941 +INCLUDE "audio/sfx.asm" SECTION "Crystal Sound Effects", ROMX, BANK[CRYSTAL_SOUND_EFFECTS] -INCBIN "baserom.gbc",$17982d, $1799ef - $17982d +INCLUDE "audio/sfx_crystal.asm" @@ -168,6 +168,6 @@ SECTION "Cries", ROMX, BANK[CRIES] CryHeaders:: INCLUDE "audio/cry_headers.asm" -INCBIN "baserom.gbc",$f2d69, $f3fb6 - $f2d69 +INCLUDE "audio/cries.asm" |