Add missing .ovb and remove .tk1 as was only used for private testing

This commit is contained in:
bnnm 2018-04-13 00:04:29 +02:00
parent dd64be04dd
commit 264ee065fa
2 changed files with 2 additions and 3 deletions

View File

@ -231,6 +231,7 @@ static const char* extension_list[] = {
"omu",
//"opus", //common
"otm",
"ovb",
"p1d", //txth/reserved [Farming Simulator 18 (3DS)]
"p2bt",
@ -336,7 +337,6 @@ static const char* extension_list[] = {
"tec",
"thp",
"tk1",
"tk5",
"tra",
"tun",

View File

@ -71,8 +71,7 @@ VGMSTREAM * init_vgmstream_ps2_tk1(STREAMFILE *streamFile) {
int loop_flag = 0, channel_count;
/* checks */
/* .ovb: actual extension, tk1: fake extension */
if (!check_extensions(streamFile, "ovb,tk1"))
if (!check_extensions(streamFile, "ovb"))
goto fail;
if (read_32bitBE(0x00,streamFile) != 0x544B3553)