From 9009d745e95f987b0782737aa83537ac05358fbf Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 18 Apr 2009 12:47:02 +0200 Subject: [PATCH] ZynAddSubFX: made MIDI pitch bend work Always send MIDI pitch bend events to MIDI channel 0 for the time being. Makes MIDI pitch wheel work with ZynAddSubFX. (cherry picked from commit 9873b880e256a99b8b0377143d30ac976c55fa24) --- plugins/zynaddsubfx/remote_zynaddsubfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/zynaddsubfx/remote_zynaddsubfx.cpp b/plugins/zynaddsubfx/remote_zynaddsubfx.cpp index addfaabb9..c3011df4b 100644 --- a/plugins/zynaddsubfx/remote_zynaddsubfx.cpp +++ b/plugins/zynaddsubfx/remote_zynaddsubfx.cpp @@ -169,7 +169,7 @@ public: } break; case MidiPitchBend: - master->SetController( _e.m_channel, + master->SetController( 0, C_pitchwheel, _e.m_data.m_param[0] + _e.m_data.m_param[1]*128-8192 );