BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit c2a0fb7db31bcce0b579ce02ab01b08ef5ff6177
parent acb5d1570471e75ce43672be20172fb05f8dc153
Author: Matt Demanett <matt@demanett.net>
Date:   Thu, 14 Nov 2019 09:46:05 -0500

Fix poly channel engine initialization in LMTR and a few other modules.  May fix crash.  (Fixed.)  #79

Diffstat:
Msrc/CVD.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/CVD.cpp b/src/CVD.cpp @@ -5,7 +5,7 @@ void CVD::Engine::sampleRateChange() { delay.setSampleRate(APP->engine->getSampleRate()); } -void Lmtr::sampleRateChange() { +void CVD::sampleRateChange() { for (int c = 0; c < _channels; ++c) { _engines[c]->sampleRateChange(); }