computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 0bcd8aefb0b04d8752cb14709a57f48afe4d9ab8
parent eb4db644132317aafef050a05001ea848460133d
Author: Adam M <[email protected]>
Date:   Thu, 25 Nov 2021 10:38:14 -0600

dont reset poly knobs on initialize

Diffstat:
Msrc/ComputerscareBolyPuttons.cpp | 1+
Msrc/ComputerscareGolyPenerator.cpp | 1+
Msrc/ComputerscareHorseADoodleDoo.cpp | 1+
Msrc/ComputerscareKnolyPobs.cpp | 1+
Msrc/ComputerscareMolyPatrix.cpp | 1+
Msrc/ComputerscareRolyPouter.cpp | 1+
Msrc/ComputerscareSolyPequencer.cpp | 1+
7 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/ComputerscareBolyPuttons.cpp b/src/ComputerscareBolyPuttons.cpp @@ -45,6 +45,7 @@ struct ComputerscareBolyPuttons : ComputerscarePolyModule { configParam<AutoParamQuantity>(POLY_CHANNELS, 0.f, 16.f, 16.f, "Poly Channels"); getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(POLY_CHANNELS)->resetEnabled = false; configInput(A_INPUT, "A (Button Up)"); configInput(B_INPUT, "B (Button Down)"); diff --git a/src/ComputerscareGolyPenerator.cpp b/src/ComputerscareGolyPenerator.cpp @@ -68,6 +68,7 @@ struct ComputerscareGolyPenerator : ComputerscareMenuParamModule { configMenuParam(COLOR, 0.f, 9.f, 0.f, "Display Color", 2); getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(POLY_CHANNELS)->resetEnabled = false; configOutput(POLY_OUTPUT, "Main"); diff --git a/src/ComputerscareHorseADoodleDoo.cpp b/src/ComputerscareHorseADoodleDoo.cpp @@ -412,6 +412,7 @@ struct ComputerscareHorseADoodleDoo : ComputerscareMenuParamModule { configMenuParam(GATE_LENGTH_PHASE, -3.14159f, 3.14159f, 0.f, "Gate Length Variation", 2); getParamQuantity(POLY_KNOB)->randomizeEnabled = false; + getParamQuantity(POLY_KNOB)->resetEnabled = false; getParamQuantity(MODE_KNOB)->randomizeEnabled = false; diff --git a/src/ComputerscareKnolyPobs.cpp b/src/ComputerscareKnolyPobs.cpp @@ -43,6 +43,7 @@ struct ComputerscareKnolyPobs : ComputerscarePolyModule { configParam(GLOBAL_OFFSET, -10.f, 10.f, 0.f, "Offset", " volts"); getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(POLY_CHANNELS)->resetEnabled = false; getParamQuantity(GLOBAL_SCALE)->randomizeEnabled = false; getParamQuantity(GLOBAL_OFFSET)->randomizeEnabled = false; diff --git a/src/ComputerscareMolyPatrix.cpp b/src/ComputerscareMolyPatrix.cpp @@ -72,6 +72,7 @@ struct ComputerscareMolyPatrix : ComputerscarePolyModule { configParam<AutoParamQuantity>(POLY_CHANNELS, 0.f, 16.f, 0.f, "Poly Channels"); getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(POLY_CHANNELS)->resetEnabled = false; configInput(POLY_INPUT, "Main"); diff --git a/src/ComputerscareRolyPouter.cpp b/src/ComputerscareRolyPouter.cpp @@ -43,6 +43,7 @@ struct ComputerscareRolyPouter : ComputerscarePolyModule { configParam(RANDOMIZE_ONE_TO_ONE, 0.f, 1.f, 0.f); getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(POLY_CHANNELS)->resetEnabled = false; getParamQuantity(RANDOMIZE_ONE_TO_ONE)->randomizeEnabled = false; configInput(POLY_INPUT, "Main"); diff --git a/src/ComputerscareSolyPequencer.cpp b/src/ComputerscareSolyPequencer.cpp @@ -52,6 +52,7 @@ struct ComputerscareSolyPequencer : ComputerscarePolyModule { configParam<AutoParamQuantity>(POLY_CHANNELS, 0.f, 16.f, 16.f, "Poly Channels"); getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false; + getParamQuantity(POLY_CHANNELS)->resetEnabled = false; configInput(POLY_INPUT, "Main"); configInput(CLOCK_INPUT, "Clock");