Browse Source

Remove redundant MIDI channel filtering in MIDI-4

tags/v1.0.0
Andrew Belt 6 years ago
parent
commit
0523a84777
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      src/Core/QuadMIDIToCVInterface.cpp

+ 0
- 4
src/Core/QuadMIDIToCVInterface.cpp View File

@@ -257,10 +257,6 @@ struct QuadMIDIToCVInterface : Module {
}

void processMessage(MidiMessage msg) {
// filter MIDI channel
if ((midiInput.channel > -1) && (midiInput.channel != msg.channel()))
return;

switch (msg.status()) {
// note off
case 0x8: {


Loading…
Cancel
Save