From 67851d7b7f3401363c7e41a1174626594bb88c01 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 17 Sep 2017 06:53:12 -0400 Subject: [PATCH] Switch SEQ3 back to continuous gates (that other commit was a mistake) --- src/SEQ3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SEQ3.cpp b/src/SEQ3.cpp index 4de8799..c97e6f8 100644 --- a/src/SEQ3.cpp +++ b/src/SEQ3.cpp @@ -154,7 +154,7 @@ void SEQ3::step() { float row1 = params[ROW1_PARAM + index]; float row2 = params[ROW2_PARAM + index]; float row3 = params[ROW3_PARAM + index]; - float gates = (gateState[index] >= 1.0) && !nextStep ? 10.0 : 0.0; + float gates = (gateState[index] >= 1.0) ? 10.0 : 0.0; setf(outputs[ROW1_OUTPUT], row1); setf(outputs[ROW2_OUTPUT], row2); setf(outputs[ROW3_OUTPUT], row3);