commit e31e77db86f2a3b312521abc7db4d4bed2b119e7
parent 8d0ca816af648300b073a66eaef87295e1130446
Author: Matt Demanett <matt@demanett.net>
Date: Wed, 13 Nov 2019 23:39:30 -0500
Restore old modulation rate of every 100 steps (temporarily, trying to track down a bug). #82
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/module.cpp b/src/module.cpp
@@ -9,7 +9,7 @@ void BGModule::onReset() {
}
void BGModule::onSampleRateChange() {
- _modulationSteps = APP->engine->getSampleRate() / 100.0f;
+ _modulationSteps = 100; // APP->engine->getSampleRate() / 100.0f;
_steps = _modulationSteps;
sampleRateChange();
}