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

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

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