Embedd adpcm file
This commit is contained in:
parent
fdd6694824
commit
746590eef3
|
@ -12,6 +12,7 @@ CLUT_4_COLOR_TRANS_FLAGS = simple-tim clut4 --color-trans
|
||||||
## Music tracks
|
## Music tracks
|
||||||
INPUT += $(OUTPUT_DIR)/Evacuation_cdda.xa
|
INPUT += $(OUTPUT_DIR)/Evacuation_cdda.xa
|
||||||
INPUT += $(OUTPUT_DIR)/fox.xa
|
INPUT += $(OUTPUT_DIR)/fox.xa
|
||||||
|
INPUT += $(OUTPUT_DIR)/apple.adpcm
|
||||||
|
|
||||||
## Images
|
## Images
|
||||||
INPUT += $(OUTPUT_DIR)/TexturePage.img
|
INPUT += $(OUTPUT_DIR)/TexturePage.img
|
||||||
|
@ -36,6 +37,10 @@ $(OUTPUT_DIR)/fox.xa: audio/temp/fox.wav
|
||||||
@mkdir -p $(OUTPUT_DIR)
|
@mkdir -p $(OUTPUT_DIR)
|
||||||
jaby_engine_fconv $< -o $@ xa
|
jaby_engine_fconv $< -o $@ xa
|
||||||
|
|
||||||
|
$(OUTPUT_DIR)/%.adpcm: audio/temp/%.wav
|
||||||
|
@mkdir -p $(OUTPUT_DIR)
|
||||||
|
jaby_engine_fconv $< -o $@ adpcm
|
||||||
|
|
||||||
$(OUTPUT_DIR)/%.xa: audio/%.wav
|
$(OUTPUT_DIR)/%.xa: audio/%.wav
|
||||||
@mkdir -p $(OUTPUT_DIR)
|
@mkdir -p $(OUTPUT_DIR)
|
||||||
jaby_engine_fconv $< -o $@ xa
|
jaby_engine_fconv $< -o $@ xa
|
||||||
|
|
|
@ -44,6 +44,9 @@
|
||||||
<Channel>../assets/bin/fox.xa</Channel>
|
<Channel>../assets/bin/fox.xa</Channel>
|
||||||
</InterleavedFile>
|
</InterleavedFile>
|
||||||
</Directory>
|
</Directory>
|
||||||
|
<Directory name = "SFX" hidden = "true">
|
||||||
|
<File name = "APPLE.ADP" lz4 = "none">../assets/bin/apple.adpcm</File>
|
||||||
|
</Directory>
|
||||||
</Filesystem>
|
</Filesystem>
|
||||||
<AudioTrack align = "true">../assets/audio/temp/breaking.wav</AudioTrack>
|
<AudioTrack align = "true">../assets/audio/temp/breaking.wav</AudioTrack>
|
||||||
</PSXCD>
|
</PSXCD>
|
Loading…
Reference in New Issue