1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

VST3: Add flag for ignoring parameter migration warning to the module header

This commit is contained in:
Anthony Nicholls 2025-06-03 13:31:01 +01:00 committed by Anthony Nicholls
parent d6181bde38
commit 34c32cbaf0

View file

@ -135,9 +135,17 @@
Enable this if you want your standalone plugin window to use kiosk mode.
By default, kiosk mode is enabled on iOS and Android.
*/
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE (JUCE_IOS || JUCE_ANDROID)
#endif
/** Config: JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING
Enable this to ignore a warning caused by enabling JUCE_VST3_CAN_REPLACE_VST2
and not enabling JUCE_FORCE_USE_LEGACY_PARAM_IDS.
*/
#ifndef JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING
#define JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING 0
#endif
#include "detail/juce_CreatePluginFilter.h"