This commit is contained in:
Simon Aarons 2020-01-12 01:40:05 +11:00
parent 49c1a0d985
commit d46be84643
2 changed files with 2 additions and 4 deletions

View File

@ -25,7 +25,7 @@ static const char* extension_list[] = {
"208",
"2dx9",
"2pfs",
"4",
"4", // for Game.com audio
"8", //txth/reserved [Gungage (PS1)]
"800",
"9tav",
@ -178,7 +178,6 @@ static const char* extension_list[] = {
"gbts",
"gca",
"gcm",
"gcomadpcm",
"gcub",
"gcw",
"genh",
@ -476,7 +475,6 @@ static const char* extension_list[] = {
"sxd3",
"tec",
"tgcadpcm",
"tgq",
"thp",
"tk5",

View File

@ -6,7 +6,7 @@ VGMSTREAM * init_vgmstream_tgc(STREAMFILE *streamFile) {
VGMSTREAM * vgmstream = NULL;
/* checks */
if (!check_extensions(streamFile, "gcomadpcm,tgcadpcm,4"))
if (!check_extensions(streamFile, "4"))
goto fail;
/* build the VGMSTREAM */