Merge pull request #564 from bxaimc/master

HWX and XB exts
This commit is contained in:
bxaimc 2020-02-25 22:54:45 -05:00 committed by GitHub
commit 9ecc972c9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -198,6 +198,7 @@ static const char* extension_list[] = {
"his", "his",
"hps", "hps",
"hsf", "hsf",
"hwx", //txth/reserved [Star Wars Episode III (Xbox)]
"hx2", "hx2",
"hx3", "hx3",
"hxc", "hxc",
@ -397,6 +398,7 @@ static const char* extension_list[] = {
"s3v", //txth/reserved [Sound Voltex 5 (AC)] "s3v", //txth/reserved [Sound Voltex 5 (AC)]
"sab", "sab",
"sad", "sad",
"saf",
"sap", "sap",
"sb0", "sb0",
"sb1", "sb1",
@ -563,6 +565,7 @@ static const char* extension_list[] = {
"xag", "xag",
"xau", "xau",
"xav", "xav",
"xb", //txth/reserved [Scooby-Doo! Unmasked (Xbox)]
"xen", "xen",
"xma", "xma",
"xma2", "xma2",

View File

@ -343,8 +343,9 @@ VGMSTREAM * init_vgmstream_riff(STREAMFILE *streamFile) {
* .rws: Climax games (Silent Hill Origins PSP, Oblivion PSP) ATRAC3 * .rws: Climax games (Silent Hill Origins PSP, Oblivion PSP) ATRAC3
* .aud: EA Replay ATRAC3 * .aud: EA Replay ATRAC3
* .at9: standard ATRAC9 * .at9: standard ATRAC9
* .saf: Whacked! (Xbox)
*/ */
if ( check_extensions(streamFile, "wav,lwav,xwav,da,dax,cd,med,snd,adx,adp,xss,xsew,adpcm,adw,wd,,sbv,wvx,str,at3,rws,aud,at9") ) { if ( check_extensions(streamFile, "wav,lwav,xwav,da,dax,cd,med,snd,adx,adp,xss,xsew,adpcm,adw,wd,,sbv,wvx,str,at3,rws,aud,at9,saf") ) {
; ;
} }
else if ( check_extensions(streamFile, "mwv") ) { else if ( check_extensions(streamFile, "mwv") ) {