Browse Source

Set default FM to 100%.

tags/v2.0.1
Andrew Belt 6 years ago
parent
commit
b6fc4df015
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/LFO.cpp
  2. +1
    -1
      src/VCO.cpp

+ 1
- 1
src/LFO.cpp View File

@@ -269,7 +269,7 @@ struct LFO2 : Module {
configParam(INVERT_PARAM, 0.f, 1.f, 1.f, "Invert");
configParam(FREQ_PARAM, -8.f, 10.f, 1.f, "Frequency", " Hz", 2, 1);
configParam(WAVE_PARAM, 0.f, 3.f, 1.5f, "Wave");
configParam(FM_PARAM, 0.f, 1.f, 0.5f, "Frequency modulation", "%", 0.f, 100.f);
configParam(FM_PARAM, 0.f, 1.f, 1.f, "Frequency modulation", "%", 0.f, 100.f);
configInput(FM_INPUT, "Frequency modulation");
configInput(RESET_INPUT, "Reset");
configInput(WAVE_INPUT, "Wave");


+ 1
- 1
src/VCO.cpp View File

@@ -427,7 +427,7 @@ struct VCO2 : Module {
configParam(SYNC_PARAM, 0.f, 1.f, 1.f, "Hard sync");
configParam(FREQ_PARAM, -54.f, 54.f, 0.f, "Frequency", " Hz", dsp::FREQ_SEMITONE, dsp::FREQ_C4);
configParam(WAVE_PARAM, 0.f, 3.f, 1.5f, "Wave");
configParam(FM_PARAM, 0.f, 1.f, 0.f, "Frequency modulation", "%", 0.f, 100.f);
configParam(FM_PARAM, 0.f, 1.f, 1.f, "Frequency modulation", "%", 0.f, 100.f);
configInput(FM_INPUT, "Frequency modulation");
configInput(SYNC_INPUT, "Sync");
configInput(WAVE_INPUT, "Wave");


Loading…
Cancel
Save