commit 1b46561488f251582f5afe0c6b00238f2de975e5 parent 29a7b2298efe9851aa4edaa018257fff0e1b226b Author: Daniel Sheeler <[email protected]> Date: Mon, 8 May 2017 16:45:18 -0500 Make plugin respond to midi program change Diffstat:
M | src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp b/src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp @@ -395,6 +395,17 @@ protected: master->setController(channel, control, value); } break; + case 0xC0: { + const int program = midiEvent.data[1]; + + for(int i=0; i < NUM_MIDI_PARTS; ++i) { + //set the program of the parts assigned to the midi channel + if(master->part[i]->Prcvchn == channel) { + middleware->pendingSetProgram(i, program); + } + } + } break; + case 0xE0: { const uint8_t lsb = midiEvent.data[1]; const uint8_t msb = midiEvent.data[2];