From 30edbd58ad1fb03358f6fb5251ed7106353bb82a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 26 Oct 2017 05:24:42 +0300 Subject: Fix compilation with old SDL 2 versions. --- src/utils/sdl2musichelper.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/utils') diff --git a/src/utils/sdl2musichelper.cpp b/src/utils/sdl2musichelper.cpp index 300f79991..eb73b2214 100644 --- a/src/utils/sdl2musichelper.cpp +++ b/src/utils/sdl2musichelper.cpp @@ -24,6 +24,11 @@ #include "debug.h" +#ifndef SDL_MIXER_VERSION_ATLEAST +#define SDL_MIXER_VERSION_ATLEAST(X, Y, Z) \ + (SDL_MIXER_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z)) +#endif // SDL_MIXER_VERSION_ATLEAST + int SDL::MixOpenAudio(const int frequency, const uint16_t format, const int nchannels, -- cgit v1.2.3-60-g2f50