Browse Source

Fix unipolar level and CV knobs of Veils.

pull/114/head
Andrew Belt 3 years ago
parent
commit
7225bf8f79
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Veils.cpp

+ 2
- 2
src/Veils.cpp View File

@@ -42,8 +42,8 @@ struct Veils : Module {
Veils() {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS);
for (int c = 0; c < 4; c++) {
configParam(GAIN1_PARAM + c, -1.0, 1.0, 0.0, string::f("Channel %d gain", c + 1), "%", 0, 100);
configParam(RESPONSE1_PARAM + c, -1.0, 1.0, 0.0, string::f("Channel %d response", c + 1));
configParam(GAIN1_PARAM + c, 0.0, 1.0, 0.0, string::f("Channel %d gain", c + 1), "%", 0, 100);
configParam(RESPONSE1_PARAM + c, 0.0, 1.0, 0.0, string::f("Channel %d response", c + 1));
configInput(IN1_INPUT + c, string::f("Channel %d", c + 1));
configInput(CV1_INPUT + c, string::f("Channel %d CV", c + 1));
configOutput(OUT1_OUTPUT + c, string::f("Channel %d", c + 1));


Loading…
Cancel
Save