Double vibrato depth to act like FT2

This commit is contained in:
Johan Hillerström 2015-11-21 15:50:58 +01:00
commit e39f601038

View file

@ -56,7 +56,7 @@ function eff_t1_3(ch) { // portamento
function eff_t0_4(ch, data) { // vibrato
if (data & 0x0f) {
ch.vibratodepth = data & 0x0f;
ch.vibratodepth = (data & 0x0f) * 2;
}
if (data >> 4) {
ch.vibratospeed = data >> 4;