Add Ogg .rof extension [The Rhythm of Fighters (Mobile)]

This commit is contained in:
bnnm 2018-03-11 19:47:57 +01:00
parent de94edb34b
commit f525b46d20
2 changed files with 3 additions and 1 deletions

View File

@ -245,6 +245,7 @@ static const char* extension_list[] = {
"raw",
"rkv",
"rnd",
"rof",
"rrds",
"rsd",
"rsf",

View File

@ -193,7 +193,8 @@ VGMSTREAM * init_vgmstream_ogg_vorbis(STREAMFILE *streamFile) {
/* check extension */
if (check_extensions(streamFile,"ogg,logg,adx")) { /* .ogg: standard/psychic, .logg: renamed for plugins, .adx: KID [Remember11 (PC)] */
/* .ogg: standard/psychic, .logg: renamed for plugins, .adx: KID [Remember11 (PC)], .rof: The Rhythm of Fighters (Mobile) */
if (check_extensions(streamFile,"ogg,logg,adx,rof")) {
is_ogg = 1;
} else if (check_extensions(streamFile,"um3")) {
is_um3 = 1;