From 132b684db729014a21d46b4ac80e8a71e52883b2 Mon Sep 17 00:00:00 2001 From: Gordon JC Pearce Date: Mon, 22 Dec 2025 12:09:11 +0000 Subject: [PATCH] clean up a couple of comments --- plugin/peacock.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugin/peacock.cpp b/plugin/peacock.cpp index 9d08d3d..a714502 100644 --- a/plugin/peacock.cpp +++ b/plugin/peacock.cpp @@ -98,12 +98,8 @@ void Peacock::run(const float**, float** outputs, uint32_t frames, const MidiEve } // now we've assembled a full chunk of audio - // we'd apply the highpass filter and chorus here - // for now just copy left to right - //memcpy(outputs[1], outputs[0], sizeof(float) * frames); chorus->run(outputs[0], outputs, frames); - // outputs[0][0]=1; } Plugin* createPlugin() { return new Peacock(); }