From e39f601038d75e5d4abc7b84e5422798bc0dcc6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Hillerstr=C3=B6m?= Date: Sat, 21 Nov 2015 15:50:58 +0100 Subject: [PATCH] Double vibrato depth to act like FT2 --- xmeffects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmeffects.js b/xmeffects.js index 7249bc7..27e906c 100644 --- a/xmeffects.js +++ b/xmeffects.js @@ -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;