Skip to content

Commit

Permalink
Merge pull request vgmstream#1458 from EdnessP/master
Browse files Browse the repository at this point in the history
EA BNK: .CAT extension (FIFA 2000)
  • Loading branch information
bnnm authored Dec 10, 2023
2 parents 8e5dbc5 + 883738e commit abbd226
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/formats.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ static const char* extension_list[] = {

"cads",
"caf",
"cat",
"cbd2",
"cd",
"cfn", //fake extension for CAF (renamed, to be removed?)
Expand Down
5 changes: 3 additions & 2 deletions src/meta/ea_schl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit abbd226

Please sign in to comment.