From 31c108c9ae9e5efbf3b070bcacd49e07d80a61dd Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 24 Jan 2022 10:09:53 +0000 Subject: [PATCH] Fix a typo, midi out went only to 15 Signed-off-by: falkTX --- plugins/Cardinal/src/HostMIDI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Cardinal/src/HostMIDI.cpp b/plugins/Cardinal/src/HostMIDI.cpp index d53ed31..6d3988a 100644 --- a/plugins/Cardinal/src/HostMIDI.cpp +++ b/plugins/Cardinal/src/HostMIDI.cpp @@ -824,7 +824,7 @@ struct HostMIDIWidget : ModuleWidget { HostMIDI* module; Menu* createChildMenu() override { Menu* menu = new Menu; - for (uint8_t c = 0; c < 15; c++) { + for (uint8_t c = 0; c < 16; c++) { menu->addChild(createCheckMenuItem(string::f("%d", c+1), "", [=]() {return module->midiOutput.channel == c;}, [=]() {module->midiOutput.channel = c;}