This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
MIDICC_CV and CV_MIDICC: Use 1-16 instead of 0-15 for default MIDI CC numbers.
tags/v2.6.1
Andrew Belt
3 months ago
parent
8bba27b77f
commit
bf407fbeaf
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/core/CV_MIDICC.cpp
+1
-1
src/core/MIDICC_CV.cpp
+ 1
- 1
src/core/CV_MIDICC.cpp
View File
@@ -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();
+ 1
- 1
src/core/MIDICC_CV.cpp
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save