diff options
Diffstat (limited to 'src/PluginProcessor.cpp')
| -rw-r--r-- | src/PluginProcessor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PluginProcessor.cpp b/src/PluginProcessor.cpp index 1b4ada7..c1f4373 100644 --- a/src/PluginProcessor.cpp +++ b/src/PluginProcessor.cpp @@ -88,7 +88,7 @@ void SchroederReverbAudioProcessor::prepareToPlay (double sampleRate, int sample { // Use this method as the place to do any pre-playback // initialisation that you need.. - combFilter.prepare(sampleRate, samplesPerBlock); + schroederReverb.prepare(sampleRate, samplesPerBlock); } void SchroederReverbAudioProcessor::releaseResources() @@ -149,7 +149,7 @@ void SchroederReverbAudioProcessor::processBlock (juce::AudioBuffer<float>& buff { auto *channelData = buffer.getWritePointer(channel); for (int i = 0; i < buffer.getNumSamples(); ++i) { - combFilter.process(&channelData[i]); + schroederReverb.process(&channelData[i]); } // ..do something to the data... } |
