diff --git a/README.md b/README.md index fda23746..3ce229b7 100644 --- a/README.md +++ b/README.md @@ -294,7 +294,9 @@ in foobar's preferences): If your player isn't picking tags make sure vgmstream is detecting the song (as other plugins can steal its extensions, see above), .m3u is properly -named and that filenames inside match the song filename. +named and that filenames inside match the song filename. For Winamp you need +to make sure options > titles > advanced title formatting checkbox is set and +the format defined. ## Supported codec types diff --git a/src/mixing.c b/src/mixing.c index 53e7bd36..95b8d8ef 100644 --- a/src/mixing.c +++ b/src/mixing.c @@ -468,6 +468,7 @@ void mixing_push_add(VGMSTREAM* vgmstream, int ch_dst, int ch_src, double volume mix.ch_src = ch_src; mix.vol = volume; + //;VGM_LOG("MIX: add %i+%i*%f\n", ch_dst,ch_src,volume); add_mixing(vgmstream, &mix); } @@ -484,6 +485,7 @@ void mixing_push_volume(VGMSTREAM* vgmstream, int ch_dst, double volume) { mix.ch_dst = ch_dst; mix.vol = volume; + //;VGM_LOG("MIX: volume %i*%f\n", ch_dst,volume); add_mixing(vgmstream, &mix); } @@ -648,7 +650,7 @@ void mixing_push_fade(VGMSTREAM* vgmstream, int ch_dst, double vol_start, double /* should only modify prev if add_mixing but meh */ } - //;VGM_LOG("MIX: fade: %i^%f~%f=%c@%i~%i~%i~%i\n", ch_dst, vol_start, vol_end, shape, time_pre, time_start, time_end, time_post); + //;VGM_LOG("MIX: fade %i^%f~%f=%c@%i~%i~%i~%i\n", ch_dst, vol_start, vol_end, shape, time_pre, time_start, time_end, time_post); add_mixing(vgmstream, &mix); }