From 6c10b3136a89044fc4a98604effa8493ee1653b0 Mon Sep 17 00:00:00 2001 From: bnnm Date: Sat, 24 Mar 2018 15:40:41 +0100 Subject: [PATCH] Fix comment --- src/meta/akb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/meta/akb.c b/src/meta/akb.c index 4a739735..0f65d66a 100644 --- a/src/meta/akb.c +++ b/src/meta/akb.c @@ -86,7 +86,7 @@ VGMSTREAM * init_vgmstream_akb(STREAMFILE *streamFile) { switch (codec) { - case 0x02: { /* MSAPDCM [various SFX] */ + case 0x02: { /* MSAPDCM [Dragon Quest II (iOS) sfx] */ vgmstream->coding_type = coding_MSADPCM; vgmstream->layout_type = layout_none; vgmstream->interleave_block_size = read_16bitLE(extradata_offset + 0x02,streamFile); @@ -101,7 +101,7 @@ VGMSTREAM * init_vgmstream_akb(STREAMFILE *streamFile) { } #ifdef VGM_USE_VORBIS - case 0x05: { /* Ogg Vorbis [Final Fantasy VI, Dragon Quest II-VI] */ + case 0x05: { /* Ogg Vorbis [Final Fantasy VI (iOS), Dragon Quest II-VI (iOS)] */ VGMSTREAM *ogg_vgmstream = NULL; ogg_vorbis_meta_info_t ovmi = {0}; @@ -123,7 +123,7 @@ VGMSTREAM * init_vgmstream_akb(STREAMFILE *streamFile) { #elif defined(VGM_USE_FFMPEG) /* Alt decoding without libvorbis (minor number of beginning samples difference). * Otherwise same output with (inaudible) +-1 lower byte differences due to rounding. */ - case 0x05: { /* Ogg Vorbis [Final Fantasy VI, Dragon Quest II-VI] */ + case 0x05: { /* Ogg Vorbis [Final Fantasy VI (iOS), Dragon Quest II-VI (iOS)] */ ffmpeg_codec_data *ffmpeg_data; ffmpeg_data = init_ffmpeg_offset(streamFile, start_offset,stream_size);