commit c89939f410f31255f2dad21c1ed4f160f85d743c
parent 44b0db2c53258f6ebd3465d8730898483a4ac2ba
Author: Hans Petter Selasky <[email protected]>
Date: Sun, 5 Apr 2020 11:42:53 +0200
Only set initial oldamplitude when creating a SUBnote.
Currently the oldamplitude was also set on all note velocity updates.
Signed-off-by: Hans Petter Selasky <[email protected]>
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/Synth/SUBnote.cpp b/src/Synth/SUBnote.cpp
@@ -202,8 +202,6 @@ void SUBnote::setup(float velocity_,
pars.PGlobalFilterVelocityScaleFunction);
}
}
-
- oldamplitude = newamplitude;
}
SynthNote *SUBnote::cloneLegato(void)
@@ -397,6 +395,7 @@ void SUBnote::initparameters(float freq, WatchManager *wm, const char *prefix)
GlobalFilter->addMod(*GlobalFilterEnvelope);
}
computecurrentparameters();
+ oldamplitude = newamplitude;
}
/*