commit 5203ce04c944fa52fb5d22065cc6a3072227b129 parent d0cad1cc6bf5815329ae18df45da889180e6f160 Author: Adam M <aemalone@gmail.com> Date: Sun, 3 May 2020 09:23:43 -0500 pouter handles negative CV correctly Diffstat:
M | src/ComputerscareRolyPouter.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ComputerscareRolyPouter.cpp b/src/ComputerscareRolyPouter.cpp @@ -113,7 +113,7 @@ struct ComputerscareRolyPouter : ComputerscarePolyModule { outputs[POLY_OUTPUT].setVoltage(0, i); } else { - outputs[POLY_OUTPUT].setVoltage(inputs[POLY_INPUT].getVoltage(knobSetting), i); + outputs[POLY_OUTPUT].setVoltage(inputs[POLY_INPUT].getVoltage(routing[i]), i); } } } else {