mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-12 09:40:51 +01:00
add .svag as possible VAG extension
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@172 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
parent
c5d066c6b5
commit
55fad001df
@ -36,7 +36,8 @@ VGMSTREAM * init_vgmstream_ps2_vag(const char * const filename) {
|
||||
int i;
|
||||
|
||||
/* check extension, case insensitive */
|
||||
if (strcasecmp("vag",filename_extension(filename))) goto fail;
|
||||
if (strcasecmp("vag",filename_extension(filename)) &&
|
||||
strcasecmp("svag",filename_extension(filename))) goto fail;
|
||||
|
||||
/* try to open the file for header reading */
|
||||
infile = open_streamfile_buffer(filename,0x8000);
|
||||
|
Loading…
Reference in New Issue
Block a user