EA BNK: .CAT extension (FIFA 2000)

This commit is contained in:
EdnessP 2023-12-09 14:53:18 +02:00
parent 8e5dbc563a
commit 883738e75c
2 changed files with 4 additions and 2 deletions

View File

@ -131,6 +131,7 @@ static const char* extension_list[] = {
"cads",
"caf",
"cat",
"cbd2",
"cd",
"cfn", //fake extension for CAF (renamed, to be removed?)

View File

@ -297,8 +297,9 @@ VGMSTREAM* init_vgmstream_ea_bnk(STREAMFILE* sf) {
* .sdt: Harry Potter games, Burnout games (PSP)
* .hdt/ldt: Burnout games (PSP)
* .abk: GoldenEye - Rogue Agent
* .ast: FIFA 2004 (inside .big) */
if (!check_extensions(sf,"bnk,sdt,hdt,ldt,abk,ast"))
* .ast: FIFA 2004 (inside .big)
* .cat: FIFA 2000 (PC, chant.cat) */
if (!check_extensions(sf,"bnk,sdt,hdt,ldt,abk,ast,cat"))
goto fail;
if (target_stream == 0) target_stream = 1;