diff --git a/res/controllers/midi-components-0.0.js b/res/controllers/midi-components-0.0.js index 45fa03a25f8..fc09f01c41a 100644 --- a/res/controllers/midi-components-0.0.js +++ b/res/controllers/midi-components-0.0.js @@ -481,8 +481,7 @@ if (this.max === Component.prototype.max) { this.max = (1 << 14) - 1; } - value = (value << 7) + (this._firstLSB ? this._firstLSB : 0); - this.input(channel, control, value, status, group); + this.input(channel, control, (value << 7) + (this._firstLSB ? this._firstLSB : 0), status, group); } this.MSB = value; },