mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix CC event for DM10-mkII Plugin
This commit is contained in:
parent
86c3b70c54
commit
3c524098b4
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ function dsp_run (_, _, n_samples)
|
|||
if #d == 0 then event_type = -1 else event_type = d[1] >> 4 end
|
||||
|
||||
-- intercept CC message
|
||||
if #d == 3 and event_type == 11 and d[2] == 8 then
|
||||
if #d == 3 and event_type == 11 and d[2] == 4 then
|
||||
hihat_state = d[3]
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue