zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit e09315b80f4fcd9d35b4aa63fe58a5bcd5316372
parent b93cad0853c2e83e3237ebe5c608a0ff6344a3a4
Author: root <[email protected]>
Date:   Fri, 21 Apr 2023 18:37:27 +0100

Controller.cpp: Set resonance bw when value changed (#389)

When resonance bandwidth changed, do not just set the value but
also actually set the underlying relbw member. Failure to do this
will result in the underlying relbw value being uninitialized,
leading to unexpected behavior of the resonance function (usually,
silence) if the resonance bandwidth is set via CC#78 without
first setting the resonance bandwidth depth.

Diffstat:
Msrc/Params/Controller.cpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/Params/Controller.cpp b/src/Params/Controller.cpp @@ -379,6 +379,7 @@ void Controller::setresonancecenter(void) void Controller::setresonancebw(int value) { resonancebandwidth.data = value; + setresonancebw(); } void Controller::setresonancebw(void)