diff options
Diffstat (limited to 'synth/note_skel.cpp')
-rw-r--r-- | synth/note_skel.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/synth/note_skel.cpp b/synth/note_skel.cpp index acc580f..9523a1b 100644 --- a/synth/note_skel.cpp +++ b/synth/note_skel.cpp @@ -6,7 +6,7 @@ using namespace std; -Note::Note(int n, float v, program_t &prg, jack_nframes_t pf, fixed_t pb, int prg_no) +NoteSkel::NoteSkel(int n, float v, program_t &prg, jack_nframes_t pf, fixed_t pb, int prg_no) { curr_prg=&prg; @@ -16,13 +16,17 @@ Note::Note(int n, float v, program_t &prg, jack_nframes_t pf, fixed_t pb, int pr set_note(n); freq=dest_freq; set_vel(v); - do_ksl(); pitchbend=pb; program=prg_no; } +NoteSkel::~NoteSkel() +{ + +} + void NoteSkel::set_pitchbend(fixed_t pb) { pitchbend=pb; |