1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed #100: If base sdk version is newer than 10.12 then no need to define kAudioUnitProperty_SupportsMPE

This commit is contained in:
hogliux 2016-08-31 13:04:24 +01:00
parent 16e6c6fd84
commit f25753642e

View file

@ -63,8 +63,10 @@ private:
#endif
//==============================================================================
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101200
enum
{
/** Custom AudioUnit property used to indicate MPE support */
kAudioUnitProperty_SupportsMPE = 75001
kAudioUnitProperty_SupportsMPE = 58
};
#endif