Browse Source

Fix input normalization of Mutes.

tags/v2.0.1
Andrew Belt 3 years ago
parent
commit
d31e86cd82
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/Mutes.cpp

+ 3
- 2
src/Mutes.cpp View File

@@ -29,11 +29,12 @@ struct Mutes : Module {
}

void process(const ProcessArgs& args) override {
const float zero[16] = {};
float out[16] = {};

// Iterate rows
for (int i = 0; i < 10; i++) {
int channels = 1;
const float zero[16] = {};
float out[16] = {};
bool mute = params[MUTE_PARAMS + i].getValue() > 0.f;

// Get input


Loading…
Cancel
Save