Browse Source
Merge pull request #434 from jeremywen/midi-trigger-fix
fixed gate val on note off in MidiTriggerToCV
tags/v0.6.0
Andrew Belt
GitHub
7 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/MidiTriggerToCV.cpp
|
|
@@ -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; |
|
|
|