summaryrefslogtreecommitdiff
path: root/note_compiler/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'note_compiler/parser.cpp')
-rw-r--r--note_compiler/parser.cpp6
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;