From bc5836dfc641e076017f896510d4aa62e50b0da3 Mon Sep 17 00:00:00 2001 From: dllmusic <34119160+dllmusic@users.noreply.github.com> Date: Wed, 25 Jul 2018 00:39:53 -0400 Subject: [PATCH] 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...) --- src/Core/QuadMIDIToCVInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/QuadMIDIToCVInterface.cpp b/src/Core/QuadMIDIToCVInterface.cpp index 485d3132..495e2735 100644 --- a/src/Core/QuadMIDIToCVInterface.cpp +++ b/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