diff --git a/tests/PlotLFO.cpp b/tests/PlotLFO.cpp index c8f63e2f..d993236a 100644 --- a/tests/PlotLFO.cpp +++ b/tests/PlotLFO.cpp @@ -83,6 +83,10 @@ int main(int argc, char* argv[]) size_t numFrames = (size_t)std::ceil(sampleRate * duration); std::vector outputMemory(numLfos * numFrames); + for (size_t l = 0; l < numLfos; ++l) { + lfos[l].start(); + } + std::vector> lfoOutputs(numLfos); for (size_t l = 0; l < numLfos; ++l) { lfoOutputs[l] = absl::MakeSpan(&outputMemory[l * numFrames], numFrames);