Browse Source

fixed note off velocity

tags/v0.5.1
Jeremy Wentworth Andrew Belt 7 years ago
parent
commit
e72618ea84
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/core/MidiTriggerToCV.cpp

+ 1
- 1
src/core/MidiTriggerToCV.cpp View File

@@ -110,7 +110,7 @@ void MIDITriggerToCVInterface::processMidi(std::vector<unsigned char> msg) {
if (status == 0x8) { // note off
for (int i = 0; i < NUM_OUTPUTS; i++) {
if (data1 == trigger[i].num) {
trigger[i].val = data2;
trigger[i].val = 0;
}
}
return;


Loading…
Cancel
Save