mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-29 19:37:30 +01:00
Fixed .str XMA [Sonic & Sega All Stars Racing with Banjo X360]
This commit is contained in:
parent
661ed2da20
commit
08a01fec1f
@ -23,6 +23,10 @@ VGMSTREAM * init_vgmstream_ps2_strlr(STREAMFILE *streamFile) {
|
||||
goto fail;
|
||||
#endif
|
||||
|
||||
/* don't hijack Sonic & Sega All Stars Racing X360 (xma) */
|
||||
if (read_32bitBE(0x00,streamFile) == 0x52494646) /* "RIFF"*/
|
||||
goto fail;
|
||||
|
||||
loop_flag = 0;
|
||||
channel_count = 2;
|
||||
|
||||
|
@ -11,8 +11,8 @@ VGMSTREAM * init_vgmstream_xma(STREAMFILE *streamFile) {
|
||||
|
||||
|
||||
/* check extension, case insensitive */
|
||||
/* .xma2: Skullgirls, .nps: Beautiful Katamari (renamed .xma) */
|
||||
if ( !check_extensions(streamFile, "xma,xma2,nps") )
|
||||
/* .xma2: Skullgirls, .nps: Beautiful Katamari (renamed .xma), .str: Sonic & Sega All Stars Racing */
|
||||
if ( !check_extensions(streamFile, "xma,xma2,nps,str") )
|
||||
goto fail;
|
||||
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user