zynaddsubfx

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

commit 38f5b4fee10f9ddb57b95e5c4f9c14390774dcc9
parent e656a01aa5b9f2e508a8a8335cd413c60e07360b
Author: Hans Petter Selasky <[email protected]>
Date:   Fri,  3 Apr 2020 14:40:51 +0200

Use correct value when updating frequency.

Signed-off-by: Hans Petter Selasky <[email protected]>

Diffstat:
Msrc/Synth/SUBnote.cpp | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/Synth/SUBnote.cpp b/src/Synth/SUBnote.cpp @@ -185,8 +185,12 @@ void SUBnote::setup(float freq, initparameters(basefreq / 440.0f * freq, wm, prefix); } else { - if(GlobalFilter) - GlobalFilter->updateNoteFreq(basefreq); + if(GlobalFilter) { + if(pars.Pfixedfreq == 0) + GlobalFilter->updateNoteFreq(basefreq); + else + GlobalFilter->updateNoteFreq(basefreq / 440.0f * freq); + } } oldamplitude = newamplitude;