Fix CC event for DM10-mkII Plugin

This commit is contained in:
Robin Gareus 2024-05-14 22:06:12 +02:00
parent 86c3b70c54
commit 3c524098b4
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

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