From efd4dc5903e7a2f9d79d1e1e4a1fafe6dec53eaf Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 12 Nov 2017 21:10:21 -0500 Subject: [PATCH] SEQ3 initialize triggers to be all on --- src/SEQ3.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/SEQ3.cpp b/src/SEQ3.cpp index 24eb5e2..57051c4 100644 --- a/src/SEQ3.cpp +++ b/src/SEQ3.cpp @@ -58,7 +58,9 @@ struct SEQ3 : Module { GateMode gateMode = TRIGGER; PulseGenerator gatePulse; - SEQ3() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {} + SEQ3() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) { + reset(); + } void step() override; json_t *toJson() override { @@ -106,7 +108,7 @@ struct SEQ3 : Module { void reset() override { for (int i = 0; i < 8; i++) { - gateState[i] = false; + gateState[i] = true; } }