diff --git a/Source/Plugins/CAR/CAR.cpp b/Source/Plugins/CAR/CAR.cpp index 8d9bdc211338e79a0fc7252d3bc2435904afd689..036963aa2bb8a97a8f78022462e8530b4ac8e707 100644 --- a/Source/Plugins/CAR/CAR.cpp +++ b/Source/Plugins/CAR/CAR.cpp @@ -61,7 +61,7 @@ void CAR::setGainLevel (float newGain) } -void CAR::process (AudioSampleBuffer& buffer, MidiBuffer& events) +void CAR::process (AudioSampleBuffer& buffer) { const int numSamples = buffer.getNumSamples(); const int numReferenceChannels = m_referenceChannels.size(); diff --git a/Source/Plugins/CAR/CAR.h b/Source/Plugins/CAR/CAR.h index ba65f6e15d0d7a236d0ecad104343c26acf292ac..2ee61c1a4124c16faf0c5d8b01566a395cb36617 100644 --- a/Source/Plugins/CAR/CAR.h +++ b/Source/Plugins/CAR/CAR.h @@ -60,7 +60,7 @@ public: number of continous samples in the current buffer (which may differ from the size of the buffer). */ - void process (AudioSampleBuffer& buffer, MidiBuffer& events) override; + void process (AudioSampleBuffer& buffer) override; /** Returns the current gain level that is set in the processor */ float getGainLevel();