BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit 711e28476be7a4927f8a8015b28e16c82f459da6
parent 6144bdae25924d09cda400789d1138ee306e555a
Author: Matt Demanett <matt@demanett.net>
Date:   Thu, 21 Nov 2019 22:52:47 -0500

Typo.

Diffstat:
Msrc/Detune.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Detune.cpp b/src/Detune.cpp @@ -15,7 +15,7 @@ void Detune::modulateChannel(int c) { _cents[c] *= clamp(inputs[CV_INPUT].getPolyVoltage(c) / 10.0f, 0.0f, 1.0f); _cents[c] = roundf(_cents[c]); } - _cents[c] /= 100.0f;; + _cents[c] /= 100.0f; } void Detune::processChannel(const ProcessArgs& args, int c) {