From 0708b7af87bb403b823458056d217836ca01d3cc Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 26 Apr 2016 10:53:21 +0100 Subject: [PATCH] Added AAX macro JucePlugin_AAXDisableSaveRestore to set the AAX_eProperty_SupportsSaveRestore parameter --- modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp b/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp index 4b88b63e77..5ddbfed9c0 100644 --- a/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp @@ -1388,6 +1388,10 @@ struct AAXClasses properties->AddProperty (AAX_eProperty_Constraint_AlwaysProcess, true); #endif + #if JucePlugin_AAXDisableSaveRestore + properties->AddProperty (AAX_eProperty_SupportsSaveRestore, false); + #endif + if (enableAuxBusesForCurrentFormat (busUtils, inputLayout, outputLayout)) { check (desc.AddSideChainIn (JUCEAlgorithmIDs::sideChainBuffers));