mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-01 12:53:21 +00:00
fixup SDL mixer version check
fixes up commit 972ae8d78a318e1dece92bf57a4d77672373c60a
This commit is contained in:
parent
22b7a3932e
commit
d4f05fd5ae
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user