Add .PS3 extension [THPG (PS3)]

This commit is contained in:
Hexagon123 2023-05-31 22:42:35 -05:00 committed by GitHub
parent 05604ffb82
commit 404ea26d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,8 +119,9 @@ VGMSTREAM* init_vgmstream_fsb(STREAMFILE* sf) {
/* .fsb: standard
* .bnk: Hard Corps Uprising (PS3)
* .sfx: Geon Cube (Wii)
* .xen: Guitar Hero: World Tour (PC) */
if ( !check_extensions(sf, "fsb,bnk,sfx,xen") )
* .ps3: Neversoft games (PS3)
* .xen: Neversoft games (X360/PC) */
if ( !check_extensions(sf, "fsb,bnk,sfx,ps3,xen") )
goto fail;
fsb.id = read_u32be(0x00,sf);