Browse Source

Fixed a compile error in the DSPModulePluginDemo example

tags/2021-05-28
ed 6 years ago
parent
commit
0bc37d210e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/Plugins/DSPModulePluginDemo.h

+ 1
- 1
examples/Plugins/DSPModulePluginDemo.h View File

@@ -511,7 +511,7 @@ private:
setLatencySamples (audioCurrentlyOversampled ? roundToInt (oversampling->getLatencyInSamples()) : 0);
if (audioCurrentlyOversampled)
oversampledBlock = oversampling->processSamplesUp (context.getInputBlock());
oversampledBlock = oversampling->processSamplesUp (context.getOutputBlock());
auto waveshaperContext = audioCurrentlyOversampled ? dsp::ProcessContextReplacing<float> (oversampledBlock)
: context;


Loading…
Cancel
Save