Browse Source

Fix Sequential Switch switch labels.

tags/v2.0.1
Andrew Belt 3 years ago
parent
commit
baaf463db2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/SequentialSwitch.cpp

+ 1
- 1
src/SequentialSwitch.cpp View File

@@ -31,7 +31,7 @@ struct SequentialSwitch : Module {


SequentialSwitch() { SequentialSwitch() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS); config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
configSwitch(STEPS_PARAM, 0.0, 2.0, 0.0, "Steps", {"2", "3", "4"});
configSwitch(STEPS_PARAM, 0.0, 2.0, 0.0, "Steps", {"4", "3", "2"});
configInput(CLOCK_INPUT, "Clock"); configInput(CLOCK_INPUT, "Clock");
configInput(RESET_INPUT, "Reset"); configInput(RESET_INPUT, "Reset");
if (INPUTS == 1) { if (INPUTS == 1) {


Loading…
Cancel
Save