Browse Source

Made AudioProcessor::setNonRealtime virtual to allow subclasses to intercept this.

tags/2021-05-28
jules 11 years ago
parent
commit
97b0a7df3c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_processors/processors/juce_AudioProcessor.h

+ 1
- 1
modules/juce_audio_processors/processors/juce_AudioProcessor.h View File

@@ -325,7 +325,7 @@ public:
/** Called by the host to tell this processor whether it's being used in a non-realtime
capacity for offline rendering or bouncing.
*/
void setNonRealtime (bool isNonRealtime) noexcept;
virtual void setNonRealtime (bool isNonRealtime) noexcept;
//==============================================================================
/** Creates the filter's UI.


Loading…
Cancel
Save