Browse Source

Fix threshold

tags/v0.6.0
Andrew Belt 7 years ago
parent
commit
173b400645
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Kinks.cpp

+ 1
- 1
src/Kinks.cpp View File

@@ -44,7 +44,7 @@ void Kinks::step() {
float noise = 2.0 * randomNormal();

// S&H
if (trigger.process(inputs[TRIG_INPUT].value * 0.7)) {
if (trigger.process(inputs[TRIG_INPUT].value / 0.7)) {
sample = inputs[SH_INPUT].normalize(noise);
}



Loading…
Cancel
Save