Skip to content

Commit

Permalink
Fixed not working MIDI channel setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sadko4u committed Jul 16, 2024
1 parent 471651d commit a9eea88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*******************************************************************************

=== 1.0.22 ===
* Fixed not working MIDI channel setup.
* Updated build scripts and dependencies.

=== 1.0.21 ===
Expand Down
3 changes: 2 additions & 1 deletion src/main/plug/trigger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,8 @@ namespace lsp
if (bMidiPorts)
{
nNote = (pOctave->value() * 12) + pNote->value();
lsp_trace("trigger note=%d", int(nNote));
nChannel = pChannel->value();
lsp_trace("trigger note=%d, channel=%d", int(nNote), int(nChannel));
}

// Update sidechain settings
Expand Down

0 comments on commit a9eea88

Please sign in to comment.