Browse Source

Add bypass routes to Octave and Quantizer.

tags/v2.0.2
Andrew Belt 1 year ago
parent
commit
66293f8d4e
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      src/Octave.cpp
  2. +1
    -0
      src/Quantizer.cpp

+ 1
- 0
src/Octave.cpp View File

@@ -28,6 +28,7 @@ struct Octave : Module {
configInput(PITCH_INPUT, "1V/octave pitch");
configInput(OCTAVE_INPUT, "Octave shift CV");
configOutput(PITCH_OUTPUT, "Pitch");
configBypass(PITCH_INPUT, PITCH_OUTPUT);
}

void process(const ProcessArgs& args) override {


+ 1
- 0
src/Quantizer.cpp View File

@@ -28,6 +28,7 @@ struct Quantizer : Module {
configParam(OFFSET_PARAM, -1.f, 1.f, 0.f, "Pre-offset", " semitones", 0.f, 12.f);
configInput(PITCH_INPUT, "1V/octave pitch");
configOutput(PITCH_OUTPUT, "Pitch");
configBypass(PITCH_INPUT, PITCH_OUTPUT);

onReset();
}


Loading…
Cancel
Save