This commit is contained in:
bnnm 2020-06-04 20:20:19 +02:00
parent 896b8be202
commit 856742c8f6
2 changed files with 4 additions and 3 deletions

View File

@ -21,12 +21,15 @@ VGMSTREAM* init_vgmstream_mups(STREAMFILE* sf) {
goto fail;
/* just an Ogg with changed OggS/vorbis words (see streamfile) */
temp_sf = setup_mups_streamfile(sf, 0x08);
if (!temp_sf) goto fail;
#ifdef VGM_USE_VORBIS
vgmstream = init_vgmstream_ogg_vorbis(temp_sf);
if (!vgmstream) goto fail;
#else
goto fail;
#endif
close_streamfile(temp_sf);

View File

@ -498,9 +498,7 @@ VGMSTREAM * (*init_vgmstream_functions[])(STREAMFILE *streamFile) = {
init_vgmstream_diva,
init_vgmstream_imuse,
init_vgmstream_ktsr,
#ifdef VGM_USE_VORBIS
init_vgmstream_mups,
#endif
init_vgmstream_kat,
/* lowest priority metas (should go after all metas, and TXTH should go before raw formats) */