Skip to content

Commit 41b6c8a

Browse files
fix previous commit (typo)
1 parent 8efab1c commit 41b6c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libs/midi++2/channel.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ Channel::process_controller (Parser & parser, EventTwoBytes *tb)
282282
cv = (unsigned short) _controller_val[tb->controller_number];
283283

284284
if (_controller_14bit[tb->controller_number]) {
285-
cv = (tb->value & 0x7f) << 7);
285+
cv = (tb->value & 0x7f) << 7;
286286
} else {
287287
cv = tb->value;
288288
}

0 commit comments

Comments
 (0)