fixup SDL mixer version check

fixes up commit 972ae8d78a318e1dece92bf57a4d77672373c60a
This commit is contained in:
Chris Beck 2014-10-31 09:16:08 -04:00
parent 22b7a3932e
commit d4f05fd5ae

View File

@ -38,7 +38,7 @@ static lg::log_domain log_audio("audio");
#define ERR_AUDIO LOG_STREAM(err, log_audio)
#if (MIX_MAJOR_VERSION <= 1) && (MIX_MINOR_VERSION <= 2) && (MIX_PATCHLEVEL <= 11)
#if (MIX_MAJOR_VERSION < 1) || (MIX_MAJOR_VERSION == 1) && ((MIX_MINOR_VERSION < 2) || (MIX_MINOR_VERSION == 2) && (MIX_PATCHLEVEL <= 11))
#define SDL_MIXER_OLD_VERSION
#endif