Browse Source

Whoops, added back VCA level knob functionality

tags/v0.4.0
Andrew Belt 7 years ago
parent
commit
7e87c8e552
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/VCA.cpp

+ 1
- 1
src/VCA.cpp View File

@@ -34,7 +34,7 @@ VCA::VCA() {
}

static void stepChannel(const float *in, float level, const float *lin, const float *exp, float *out) {
float v = getf(in);
float v = getf(in) * level;
if (lin)
v *= clampf(*lin / 10.0, 0.0, 1.0);
const float expBase = 50.0;


Loading…
Cancel
Save