Browse Source

Update Tides2.cpp

fix the description of Frequency and Ramp mode parameters. They were flip-flopped.
pull/102/head
Christian Kauten GitHub 4 years ago
parent
commit
e353ddc1b3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Tides2.cpp

+ 2
- 2
src/Tides2.cpp View File

@@ -103,8 +103,8 @@ struct Tides2 : Module {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configParam(RANGE_PARAM, 0.0, 1.0, 0.0, "Frequency range");
configParam(MODE_PARAM, 0.0, 1.0, 0.0, "Output mode");
configParam(FREQUENCY_PARAM, -48, 48, 0.0, "Ramp mode");
configParam(SHAPE_PARAM, 0.0, 1.0, 0.5, "Frequency");
configParam(FREQUENCY_PARAM, -48, 48, 0.0, "Frequency");
configParam(SHAPE_PARAM, 0.0, 1.0, 0.5, "Ramp mode");
configParam(RAMP_PARAM, 0.0, 1.0, 0.0, "Shape");
configParam(SMOOTHNESS_PARAM, 0.0, 1.0, 0.5, "Waveshape transformation");
configParam(SLOPE_PARAM, 0.0, 1.0, 0.5, "Ascending/descending ratio");


Loading…
Cancel
Save