From baaf463db2bcd9d4f577f209b3795d7321a174fe Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 9 Oct 2021 15:48:01 -0400 Subject: [PATCH] Fix Sequential Switch switch labels. --- src/SequentialSwitch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SequentialSwitch.cpp b/src/SequentialSwitch.cpp index af76f92..1fd50b8 100644 --- a/src/SequentialSwitch.cpp +++ b/src/SequentialSwitch.cpp @@ -31,7 +31,7 @@ struct SequentialSwitch : Module { SequentialSwitch() { 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(RESET_INPUT, "Reset"); if (INPUTS == 1) {