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
Merge pull request
#434
from jeremywen/midi-trigger-fix
fixed gate val on note off in MidiTriggerToCV
pull/1639/head
Andrew Belt
GitHub
7 years ago
parent
264c040c6a
d6eb97e6bf
commit
a081971c1d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
Write
Preview
Loading…
Cancel
Save