From 63b8778912233a2494669354a569380124af4cea Mon Sep 17 00:00:00 2001 From: bnnm Date: Sun, 21 Jul 2019 13:09:13 +0200 Subject: [PATCH] Add extensionless .dsp [Tony Hawk's Downhill Jam (Wii)] --- src/meta/ngc_dsp_std.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/meta/ngc_dsp_std.c b/src/meta/ngc_dsp_std.c index 79f2b19b..0378ab2c 100644 --- a/src/meta/ngc_dsp_std.c +++ b/src/meta/ngc_dsp_std.c @@ -253,8 +253,9 @@ VGMSTREAM * init_vgmstream_ngc_dsp_std(STREAMFILE *streamFile) { /* checks */ /* .dsp: standard - * .adp: Dr. Muto/Battalion Wars (GC) mono files */ - if (!check_extensions(streamFile, "dsp,adp")) + * .adp: Dr. Muto/Battalion Wars (GC) mono files + * (extensionless): Tony Hawk's Downhill Jam (Wii) */ + if (!check_extensions(streamFile, "dsp,adp,")) goto fail; if (read_dsp_header(&header, 0x00, streamFile))