Browse Source

Logic: Fix polyphonic output assignment.

tags/v2.3.1
Andrew Belt 1 year ago
parent
commit
8f17ca4672
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Logic.cpp

+ 1
- 1
src/Logic.cpp View File

@@ -76,7 +76,7 @@ struct Logic : Module {
};

for (int i = 0; i < 8; i++) {
outputs[NOTA_OUTPUT + i].setVoltage(states[i] ? 10.f : 0.f);
outputs[NOTA_OUTPUT + i].setVoltage(states[i] ? 10.f : 0.f, c);
if (states[i])
anyState[i] = true;
}


Loading…
Cancel
Save