plugin 'microtune' does not work on voice 4

• May 29, 2012 - 08:27
Type
Functional
Severity
S4 - Minor
Status
closed

The bug is in line 122 of that plugin:
for (var v = 0; v < 3; v++) {

Correct would be:
for (var v = 0; v < 4; v++) {
or
for (var v = 0; v <= 3; v++) {


Comments