From a5588d2f754b280e23a0ddf514d1f76b3300858e Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 26 Jan 2014 14:11:42 +0100 Subject: [PATCH] ZynAddSubFX: default pitch wheel bend range to 100 Even though ZynAddSubFX does not support pitch wheel sensitivity RPN events and thus we can't update the pitch range from LMMS automatically, at least default to 100 semitones pitch wheel bend range so behaviour is consistent with default pitch range in LMMS. --- plugins/zynaddsubfx/src/Params/Controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/zynaddsubfx/src/Params/Controller.cpp b/plugins/zynaddsubfx/src/Params/Controller.cpp index 9bfa6b47d..e3fb70d8c 100644 --- a/plugins/zynaddsubfx/src/Params/Controller.cpp +++ b/plugins/zynaddsubfx/src/Params/Controller.cpp @@ -35,7 +35,7 @@ Controller::~Controller() void Controller::defaults() { - setpitchwheelbendrange(200); //2 halftones + setpitchwheelbendrange(100); //2 halftones expression.receive = 1; panning.depth = 64; filtercutoff.depth = 64;