Browse Source
Unnecessary to filter MIDI channel (line 262)
... MIDI Channel is already filtered in midi.cpp line 162 (...just realized this while working on my modules...)
pull/1073/head
dllmusic
GitHub
6 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/Core/QuadMIDIToCVInterface.cpp
|
|
@@ -258,8 +258,8 @@ struct QuadMIDIToCVInterface : Module { |
|
|
|
|
|
|
|
void processMessage(MidiMessage msg) { |
|
|
|
// filter MIDI channel |
|
|
|
if ((midiInput.channel > -1) && (midiInput.channel != msg.channel())) |
|
|
|
return; |
|
|
|
// if ((midiInput.channel > -1) && (midiInput.channel != msg.channel())) |
|
|
|
// return; |
|
|
|
|
|
|
|
switch (msg.status()) { |
|
|
|
// note off |
|
|
|