From 3c524098b4927c2479bcfd5693ca11117425c4be Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 14 May 2024 22:06:12 +0200 Subject: [PATCH] Fix CC event for DM10-mkII Plugin --- share/scripts/dm10studio.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/scripts/dm10studio.lua b/share/scripts/dm10studio.lua index 44c790031e..899ab12848 100644 --- a/share/scripts/dm10studio.lua +++ b/share/scripts/dm10studio.lua @@ -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