From 69417b35f289ecd95fc2d07abe389f990df687d8 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 10 Nov 2021 07:24:31 -0500 Subject: [PATCH] Use smooth brightness of light in SamplingModulator. --- src/SamplingModulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SamplingModulator.cpp b/src/SamplingModulator.cpp index 69730ca..7875b9a 100644 --- a/src/SamplingModulator.cpp +++ b/src/SamplingModulator.cpp @@ -197,7 +197,7 @@ struct SamplingModulator : Module { } for (int i = 0; i < numSteps; i++) { - lights[STEP_LIGHT + i].setBrightness(currentStep == i); + lights[STEP_LIGHT + i].setBrightnessSmooth(currentStep == i, args.sampleTime); } }