From 0d51959c83aa0f361e53bf93d184c9d31543d953 Mon Sep 17 00:00:00 2001 From: yenatch Date: Sun, 30 Mar 2014 16:56:42 -0700 Subject: Use labels instead of static addresses in sound pointers. Static address substraction would wreak havoc in other memory configurations. --- constants/music_constants.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'constants') diff --git a/constants/music_constants.asm b/constants/music_constants.asm index 3d2ac3f8..30d11543 100644 --- a/constants/music_constants.asm +++ b/constants/music_constants.asm @@ -1,7 +1,7 @@ ; Song ids are calculated by address to save space. music_const: MACRO -\1 EQUS "((\2 - $4000) / 3)" +\1 EQUS "((\2 - SFX_Headers_02) / 3)" ENDM music_const MUSIC_PALLET_TOWN, Music_PalletTown -- cgit v1.3.1-sl0p