mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-29 19:37:30 +01:00
Add .ai AIFF extension [Dragon Force (SAT) sfx]
This commit is contained in:
parent
65b80e5fd7
commit
2f5abcb11a
@ -32,6 +32,7 @@ static const char* extension_list[] = {
|
|||||||
"afc",
|
"afc",
|
||||||
"agsc",
|
"agsc",
|
||||||
"ahx",
|
"ahx",
|
||||||
|
"ai",
|
||||||
//"aif", //common
|
//"aif", //common
|
||||||
"aifc", //common?
|
"aifc", //common?
|
||||||
"aifcl", //fake extension, for AIF???
|
"aifcl", //fake extension, for AIF???
|
||||||
|
@ -71,6 +71,7 @@ VGMSTREAM * init_vgmstream_aifc(STREAMFILE *streamFile) {
|
|||||||
* .bgm: Super Street Fighter II Turbo (3DO)
|
* .bgm: Super Street Fighter II Turbo (3DO)
|
||||||
* .acm: Crusader - No Remorse (SAT)
|
* .acm: Crusader - No Remorse (SAT)
|
||||||
* .adp: Sonic Jam (SAT)
|
* .adp: Sonic Jam (SAT)
|
||||||
|
* .ai: Dragon Force (SAT)
|
||||||
* .aifcl/aiffl: for plugins? */
|
* .aifcl/aiffl: for plugins? */
|
||||||
if (check_extensions(streamFile, "aif")) {
|
if (check_extensions(streamFile, "aif")) {
|
||||||
is_aifc_ext = 1;
|
is_aifc_ext = 1;
|
||||||
@ -79,7 +80,7 @@ VGMSTREAM * init_vgmstream_aifc(STREAMFILE *streamFile) {
|
|||||||
else if (check_extensions(streamFile, "aifc,aifcl,afc,cbd2,bgm")) {
|
else if (check_extensions(streamFile, "aifc,aifcl,afc,cbd2,bgm")) {
|
||||||
is_aifc_ext = 1;
|
is_aifc_ext = 1;
|
||||||
}
|
}
|
||||||
else if (check_extensions(streamFile, "aiff,acm,adp,aiffl")) {
|
else if (check_extensions(streamFile, "aiff,acm,adp,ai,aiffl")) {
|
||||||
is_aiff_ext = 1;
|
is_aiff_ext = 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user