Browse Source

Use 261.6256 Hz/V for linear FM on WTVCO.

tags/v2.0.1
Andrew Belt 3 years ago
parent
commit
5f6338830e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/WTVCO.cpp

+ 1
- 1
src/WTVCO.cpp View File

@@ -152,7 +152,7 @@ struct WTVCO : Module {
} }
else { else {
freq = dsp::FREQ_C4 * dsp::approxExp2_taylor5(pitch + 30.f) / std::pow(2.f, 30.f); freq = dsp::FREQ_C4 * dsp::approxExp2_taylor5(pitch + 30.f) / std::pow(2.f, 30.f);
freq *= 1.f + inputs[FM_INPUT].getPolyVoltageSimd<float_4>(c) * fmParam;
freq += dsp::FREQ_C4 * inputs[FM_INPUT].getPolyVoltageSimd<float_4>(c) * fmParam;
} }


// Limit to Nyquist frequency // Limit to Nyquist frequency


Loading…
Cancel
Save