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:22:20 +0100 |
commit | 65fe359eb034d8e4a4a7f4d673af6f473ef27ff8 (patch) | |
tree | 97c71e37ff314cd1a244b85c914809ae544e2fd8 /synth/globals.cpp | |
parent | 918f4c99f37b9ca2ae2bbd6c906b7e0f994af014 (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 5b256b3..e932fcb 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; |