From 085489f7e2444dfa6cca143328895fc71beb0c3b Mon Sep 17 00:00:00 2001 From: James Crook Date: Tue, 7 Feb 2017 11:57:44 +0000 Subject: [PATCH] Don't scan AudioUnits in fast check of plug-in validity. --- src/effects/audiounits/AudioUnitEffect.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/effects/audiounits/AudioUnitEffect.cpp b/src/effects/audiounits/AudioUnitEffect.cpp index 6435ac9c4..8684d053a 100644 --- a/src/effects/audiounits/AudioUnitEffect.cpp +++ b/src/effects/audiounits/AudioUnitEffect.cpp @@ -191,8 +191,10 @@ bool AudioUnitEffectsModule::RegisterPlugin(PluginManagerInterface & pm, const w } bool AudioUnitEffectsModule::IsPluginValid( - const wxString & path, bool /* bFast */) + const wxString & path, bool bFast) { + if( bFast ) + return true; wxString name; return FindAudioUnit(path, name) != NULL; }