Double vibrato depth to act like FT2
This commit is contained in:
parent
b81d675b66
commit
e39f601038
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ function eff_t1_3(ch) { // portamento
|
||||||
|
|
||||||
function eff_t0_4(ch, data) { // vibrato
|
function eff_t0_4(ch, data) { // vibrato
|
||||||
if (data & 0x0f) {
|
if (data & 0x0f) {
|
||||||
ch.vibratodepth = data & 0x0f;
|
ch.vibratodepth = (data & 0x0f) * 2;
|
||||||
}
|
}
|
||||||
if (data >> 4) {
|
if (data >> 4) {
|
||||||
ch.vibratospeed = data >> 4;
|
ch.vibratospeed = data >> 4;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue