Browse Source

Logic: Tweak gate trigger threshold.

tags/v2.3.0
Andrew Belt 2 years ago
parent
commit
8c2b2649da
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Logic.cpp

+ 2
- 2
src/Logic.cpp View File

@@ -57,8 +57,8 @@ struct Logic : Module {
bool anyState[8] = {};

for (int c = 0; c < channels; c++) {
bool a = inputs[A_INPUT].getPolyVoltage(c) > 1.f;
bool b = bPush || inputs[B_INPUT].getPolyVoltage(c) > 1.f;
bool a = inputs[A_INPUT].getPolyVoltage(c) >= 1.f;
bool b = bPush || inputs[B_INPUT].getPolyVoltage(c) >= 1.f;

bool states[8] = {
!a, // NOTA


Loading…
Cancel
Save