Add .snd FSB5 extension

This commit is contained in:
bnnm 2019-06-13 23:56:25 +02:00
parent 94dd9dfe87
commit d4b3ffb3bb

View File

@ -44,8 +44,10 @@ VGMSTREAM * init_vgmstream_fsb5(STREAMFILE *streamFile) {
int i;
/* check extension, case insensitive */
if (!check_extensions(streamFile,"fsb"))
/* checks */
/* .fsb: standard
* .snd: Alchemy engine (also Unity) */
if (!check_extensions(streamFile,"fsb,snd"))
goto fail;
if (read_32bitBE(0x00,streamFile) != 0x46534235) /* "FSB5" */