diff --git a/src/core/CV_MIDICC.cpp b/src/core/CV_MIDICC.cpp index f84eafcf..23363f3f 100644 --- a/src/core/CV_MIDICC.cpp +++ b/src/core/CV_MIDICC.cpp @@ -68,7 +68,7 @@ struct CV_MIDICC : Module { void onReset() override { for (int id = 0; id < 16; id++) { - learnedCcs[id] = id; + learnedCcs[id] = id + 1; } learningId = -1; midiOutput.reset(); diff --git a/src/core/MIDICC_CV.cpp b/src/core/MIDICC_CV.cpp index 84302c94..a8a4adb1 100644 --- a/src/core/MIDICC_CV.cpp +++ b/src/core/MIDICC_CV.cpp @@ -62,7 +62,7 @@ struct MIDICC_CV : Module { } learningId = -1; for (int id = 0; id < 16; id++) { - learnedCcs[id] = id; + learnedCcs[id] = id + 1; } midiInput.reset(); smooth = true;