Remove .04sw fake extension (use .xa)

This commit is contained in:
bnnm 2022-01-30 13:30:24 +01:00
parent 0e2023767b
commit ba1743cd3a
2 changed files with 1 additions and 4 deletions

View File

@ -21,7 +21,6 @@
static const char* extension_list[] = {
//"", /* vgmstream can play extensionless files too, but plugins must accept them manually */
"04sw",
"208",
"2dx9",
"2pfs",

View File

@ -14,9 +14,7 @@ VGMSTREAM* init_vgmstream_xa_04sw(STREAMFILE* sf) {
if (!is_id32be(0x00,sf, "04SW"))
goto fail;
/* .xa: standard
* .04sw: header ID / renamed */
if (!check_extensions(sf,"xa,04sw"))
if (!check_extensions(sf,"xa"))
goto fail;
/* after the ID goes a modified DSP header x2 */