From 41b6c8a5bfbdbfd302225f47ea68369231221fda Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 27 Jun 2024 16:51:16 -0600 Subject: [PATCH] fix previous commit (typo) --- libs/midi++2/channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/midi++2/channel.cc b/libs/midi++2/channel.cc index 5f4bf9d19d..b5cabd9f8d 100644 --- a/libs/midi++2/channel.cc +++ b/libs/midi++2/channel.cc @@ -282,7 +282,7 @@ Channel::process_controller (Parser & parser, EventTwoBytes *tb) cv = (unsigned short) _controller_val[tb->controller_number]; if (_controller_14bit[tb->controller_number]) { - cv = (tb->value & 0x7f) << 7); + cv = (tb->value & 0x7f) << 7; } else { cv = tb->value; }