summaryrefslogtreecommitdiff
path: root/asm/macros
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2016-09-08 16:42:47 -0700
committerMarcus Huderle <huderlem@gmail.com>2016-09-08 16:42:47 -0700
commit001e1c77b8e6afd6d0af0ec81496d54219e4c7bd (patch)
tree9399629342bbbc8ef3ddaf528c49d04071044396 /asm/macros
parentfe1fad3aa5b25e00597c0ab6d2925a9390b2cbd1 (diff)
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.
Diffstat (limited to 'asm/macros')
-rw-r--r--asm/macros/music_voice.s14
1 files changed, 0 insertions, 14 deletions
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