From a2a349740e582461faa5f561cd7fa86f420e172d Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 12 Jun 2018 21:59:16 -0400 Subject: [PATCH] Remove +/-12V clamping of wires --- src/engine.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/engine.cpp b/src/engine.cpp index 08b850b3..63c3dc2a 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -54,8 +54,6 @@ void Light::setBrightnessSmooth(float brightness, float frames) { void Wire::step() { float value = outputModule->outputs[outputId].value; - // Assume a +/-12V power supply (like Eurorack), and prevent voltages outside the power range. - value = clamp(value, -12.f, 12.f); inputModule->inputs[inputId].value = value; }