Browse Source

Fix inversion of Random TRIG output.

tags/v2.0.1
Andrew Belt 2 years ago
parent
commit
29a66f5417
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Random.cpp

+ 1
- 1
src/Random.cpp View File

@@ -217,7 +217,7 @@ struct Random : Module {
}

// Trigger output
outputs[TRIG_OUTPUT].setVoltage(trigGenerator.process(args.sampleTime) ? 0.f : 10.f);
outputs[TRIG_OUTPUT].setVoltage(trigGenerator.process(args.sampleTime) ? 10.f : 0.f);

// Lights
lights[RATE_LIGHT].setSmoothBrightness(0.f, args.sampleTime);


Loading…
Cancel
Save