From ba22f31c36a845553c495ce4604826532ed55600 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Fri, 24 Feb 2012 21:04:28 +0100 Subject: Fixed compiling against SDL_mixer versions before 1.2.9 Mix_LoadMUS_RW was added with SDL_mixer 1.2.9. Reviewed-by: Erik Schilling --- src/resources/music.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/resources/music.cpp b/src/resources/music.cpp index 6a87bb63..73ef2f85 100644 --- a/src/resources/music.cpp +++ b/src/resources/music.cpp @@ -35,6 +35,9 @@ Music::~Music() Resource *Music::load(SDL_RWops *rw) { +#if SDL_MIXER_MAJOR_VERSION >= 1 &&\ + SDL_MIXER_MINOR_VERSION >= 2 &&\ + SDL_MIXER_PATCHLEVEL >= 9 if (Mix_Music *music = Mix_LoadMUS_RW(rw)) { return new Music(music); @@ -44,6 +47,10 @@ Resource *Music::load(SDL_RWops *rw) logger->log("Error, failed to load music: %s", Mix_GetError()); return 0; } +#else + SDL_FreeRW(rw); + return 0; +#endif } bool Music::play(int loops, int fadeIn) -- cgit v1.2.3-70-g09d2