Browse Source

Fix trigger on SEQ3

tags/v0.4.0
Andrew Belt 7 years ago
parent
commit
59a2fc49ee
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/SEQ3.cpp

+ 1
- 1
src/SEQ3.cpp View File

@@ -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) && !nextStep ? 10.0 : 0.0;
setf(outputs[ROW1_OUTPUT], row1);
setf(outputs[ROW2_OUTPUT], row2);
setf(outputs[ROW3_OUTPUT], row3);


Loading…
Cancel
Save