Update xwma.c

This commit is contained in:
makefilex 2023-03-19 18:52:13 -03:00 committed by GitHub
parent 5a18c9cc9e
commit 3820ddb371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,8 +31,11 @@ VGMSTREAM* init_vgmstream_xwma(STREAMFILE* sf) {
if (!is_id32be(0x08,sf, "XWMA"))
goto fail;
/* .xwma: standard
* .xwm: The Elder Scrolls: Skyrim (PC), Blade Arcus from Shining (PC) */
if (!check_extensions(sf, "xwma,xwm"))
* .xwm: The Elder Scrolls: Skyrim (PC), Blade Arcus from Shining (PC)
* .xma: Castle Crashers (PC)
* .wma/lwma: BattleBlock Theater (PC)
*/
if (!check_extensions(sf, "xwma,xwm,xma,wma,lwma"))
goto fail;
{