commit 80c0ef553f5cb98a1477949b6121f17adb88dc98
parent f1e96cbe7165a645d06601e94eaacfd2599df323
Author: fundamental <mark.d.mccurry@gmail.com>
Date: Tue, 18 Mar 2014 13:17:50 -0400
Fix Uninitialized Var
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Synth/ADnote.cpp b/src/Synth/ADnote.cpp
@@ -40,7 +40,7 @@ ADnote::ADnote(ADnoteParameters *pars,
int portamento_,
int midinote_,
bool besilent)
- :SynthNote(freq, velocity, portamento_, midinote, besilent)
+ :SynthNote(freq, velocity, portamento_, midinote_, besilent)
{
tmpwavel = new float [synth->buffersize];
tmpwaver = new float [synth->buffersize];