Browse Source

Make LFOs unipolar by default.

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

+ 1
- 1
src/LFO.cpp View File

@@ -52,7 +52,7 @@ struct LFO : Module {

LFO() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configSwitch(OFFSET_PARAM, 0.f, 1.f, 0.f, "Offset", {"Bipolar", "Unipolar"});
configSwitch(OFFSET_PARAM, 0.f, 1.f, 1.f, "Offset", {"Bipolar", "Unipolar"});
configSwitch(INVERT_PARAM, 0.f, 1.f, 0.f, "Invert");

struct FrequencyQuantity : ParamQuantity {


+ 1
- 1
src/WTLFO.cpp View File

@@ -50,7 +50,7 @@ struct WTLFO : Module {

WTLFO() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configSwitch(OFFSET_PARAM, 0.f, 1.f, 0.f, "Offset", {"Bipolar", "Unipolar"});
configSwitch(OFFSET_PARAM, 0.f, 1.f, 1.f, "Offset", {"Bipolar", "Unipolar"});
configSwitch(INVERT_PARAM, 0.f, 1.f, 0.f, "Invert");

struct FrequencyQuantity : ParamQuantity {


Loading…
Cancel
Save