summaryrefslogtreecommitdiff
path: root/synth/note_skel.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@thinkpad.(none)>2010-12-30 17:25:57 +0100
committerFlorian Jung <flo@thinkpad.(none)>2010-12-30 17:25:57 +0100
commitc1a2c43aa8d4c5bcfa345fd3b92215c18c938683 (patch)
treea96e87ce59d9d850f03647d02bc71a63b952bccb /synth/note_skel.cpp
parentbe11f60acfc7a9283ab038b4a1cd25e5e6882cc7 (diff)
Note inherits from NoteSkel -- works
Diffstat (limited to 'synth/note_skel.cpp')
-rw-r--r--synth/note_skel.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/synth/note_skel.cpp b/synth/note_skel.cpp
index 9523a1b..b028ca4 100644
--- a/synth/note_skel.cpp
+++ b/synth/note_skel.cpp
@@ -6,20 +6,8 @@
using namespace std;
-NoteSkel::NoteSkel(int n, float v, program_t &prg, jack_nframes_t pf, fixed_t pb, int prg_no)
+NoteSkel::NoteSkel()
{
- curr_prg=&prg;
-
- portamento_frames=0;
- set_portamento_frames(pf);
-
- set_note(n);
- freq=dest_freq;
- set_vel(v);
-
- pitchbend=pb;
-
- program=prg_no;
}
NoteSkel::~NoteSkel()