diff options
author | Florian Jung <flo@thinkpad.(none)> | 2011-01-15 18:13:48 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2011-01-15 18:13:48 +0100 |
commit | 67025394dcbc2d0917c89856c40be3b9198eca5e (patch) | |
tree | 48ac8600e1d4141ee587458db1076e967393fe35 /synth/note.h | |
parent | 9e3998bbaddf4eb6df8544497e42231137824998 (diff) |
Implemented freq-envelopes for non-compiled notes
plus some tiny bugfixes:
- in Envelope (get_sustain now returns orig_sustain)
- parser now uses isnum instead of isfloat where appropriate
Diffstat (limited to 'synth/note.h')
-rw-r--r-- | synth/note.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synth/note.h b/synth/note.h index cc043e6..7181f6d 100644 --- a/synth/note.h +++ b/synth/note.h @@ -35,6 +35,9 @@ class Note : public NoteSkel int env_frame_counter; + double *freqfactor_factor; + Envelope **factor_env; + fixed_t *envval; fixed_t *oscval; fixed_t *old_oscval; |