diff options
author | Florian Jung <flo@thinkpad.(none)> | 2011-01-07 18:40:47 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2011-01-07 18:40:47 +0100 |
commit | f76e20a3486b31945fd35f6b1a0bd517d6dc176e (patch) | |
tree | 1663e3a8845469dcf7a83d2e5c844833ea89d06a /note_compiler/parser.cpp | |
parent | 892c323f7851c76bf678369987c5c7a361626ea2 (diff) |
Improved note-compiler and added TODO-entries
Diffstat (limited to 'note_compiler/parser.cpp')
-rw-r--r-- | note_compiler/parser.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/note_compiler/parser.cpp b/note_compiler/parser.cpp index 3f142bd..17c197f 100644 --- a/note_compiler/parser.cpp +++ b/note_compiler/parser.cpp @@ -23,7 +23,7 @@ void init_oscs(int n_osc, oscillator_t *osc) } osc[i].output=0; - osc[i].output_const=true; + osc[i].output_const=false; //TODO FINDMICH war true osc[i].waveform=0; osc[i].waveform_const=true; osc[i].factor=ONE; @@ -39,6 +39,8 @@ void init_oscs(int n_osc, oscillator_t *osc) osc[i].have_custom_wave=false; osc[i].sync=false; osc[i].sync_const=true; + osc[i].ksr_const=true; + osc[i].ksl_const=true; } } @@ -124,7 +126,7 @@ program_t parse(string fn) fixed_t sync_factor=0; bool sync_factor_const=true; - bool use_pfactor=false; + bool use_pfactor=true; //TODO FINDMICH war false char buf[2000]; string line; |