13
0

fix previous commit (typo)

This commit is contained in:
Paul Davis 2024-06-27 16:51:16 -06:00
parent 8efab1c796
commit 41b6c8a5bf

View File

@ -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;
}