From 001e1c77b8e6afd6d0af0ec81496d54219e4c7bd Mon Sep 17 00:00:00 2001 From: Marcus Huderle Date: Thu, 8 Sep 2016 16:42:47 -0700 Subject: Output .bin file for direct sound metadata (loop point, pitch adust, and number of samples). This was needed since we couldn't incbin a string argument in a macro. --- asm/macros/music_voice.s | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'asm/macros') diff --git a/asm/macros/music_voice.s b/asm/macros/music_voice.s index 357ee3b3f..9a95d69f4 100644 --- a/asm/macros/music_voice.s +++ b/asm/macros/music_voice.s @@ -111,17 +111,3 @@ .4byte \voice_group_pointer .4byte 0 .endm - - .macro directsound_looped pitch_adjust, loop_start_sample_index, num_samples - .4byte 0x40000000 - .4byte \pitch_adjust - .4byte \loop_start_sample_index - .4byte \num_samples - .endm - - .macro directsound_not_looped pitch_adjust, num_samples - .4byte 0x0 - .4byte \pitch_adjust - .4byte 0x0 - .4byte \num_samples - .endm -- cgit v1.2.3