diff options
author | Florian Jung <flo@thinkpad.(none)> | 2011-01-09 13:06:58 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2011-01-09 13:06:58 +0100 |
commit | 216f7933c5b4b65f7f45d3c459ead10f160d124b (patch) | |
tree | 7d7e0c6a7af1723a4d536bd4d12c50572db77896 /synth/globals.cpp | |
parent | 8320af55e716f352f2720801fcd73913f2e7d19c (diff) |
envelope_update_frames can now be set via CLI and config file
Diffstat (limited to 'synth/globals.cpp')
-rw-r--r-- | synth/globals.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synth/globals.cpp b/synth/globals.cpp index d6af5f2..6a84353 100644 --- a/synth/globals.cpp +++ b/synth/globals.cpp @@ -23,11 +23,13 @@ float cleanup_interval_sec=0; float snh_freq_hz=0; float max_port_time_sec=0; -float filter_update_freq_hz; -float lfo_update_freq_hz; +float filter_update_freq_hz=0; +float lfo_update_freq_hz=0; +float envelope_update_freq_hz=0; int filter_update_frames; int lfo_update_frames; +int envelope_update_frames; float xrun_time=0; int xrun_n=0; |