From 60dacb649ff26bc6a7fee454bebe9b73981b9fbd Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Wed, 22 Mar 2023 08:47:50 -0400 Subject: [PATCH] update debug message for MIDI control events --- src/midi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/midi.cpp b/src/midi.cpp index 5f4dc33..d670cc8 100644 --- a/src/midi.cpp +++ b/src/midi.cpp @@ -82,7 +82,7 @@ midiProcess(const snd_seq_event_t* ev) } else if(ev->type == SND_SEQ_EVENT_CONTROLLER) { - printf("[%d] Control: %2x val(%2x)\n", + printf("[%d] Control: 0x%2x val(%2x)\n", ev->time.tick, ev->data.control.param, ev->data.control.value);