computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 5b8e4afab3cf2d8731cca6ea472616888b535ca9
parent 98c619bc8bfabfbddb1ccbc7371e8a01f98c0fa8
Author: Adam M <aemalone@gmail.com>
Date:   Sat, 16 Oct 2021 09:48:10 -0500

knolypobs use v2 randomizeEnabled flag for params

Diffstat:
Msrc/ComputerscareKnolyPobs.cpp | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/ComputerscareKnolyPobs.cpp b/src/ComputerscareKnolyPobs.cpp @@ -41,6 +41,11 @@ struct ComputerscareKnolyPobs : ComputerscarePolyModule { configParam(POLY_CHANNELS, 1.f, 16.f, 16.f, "Poly Channels"); configParam(GLOBAL_SCALE, -2.f, 2.f, 1.f, "Scale"); configParam(GLOBAL_OFFSET, -10.f, 10.f, 0.f, "Offset", " volts"); + + getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(GLOBAL_SCALE)->randomizeEnabled = false; + getParamQuantity(GLOBAL_OFFSET)->randomizeEnabled = false; + } void process(const ProcessArgs &args) override { ComputerscarePolyModule::checkCounter();