diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-31 15:23:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-31 15:23:32 +0300 |
commit | e5f77d32668cd1d5daa1b6deb5fe6da7eaf2f75d (patch) | |
tree | c1d76c0815a82d640f1c0a1c6b14e4b44813991e /src | |
parent | 9bcc59a86fb80f3d482cb6995134b39b58739608 (diff) | |
download | plus-e5f77d32668cd1d5daa1b6deb5fe6da7eaf2f75d.tar.gz plus-e5f77d32668cd1d5daa1b6deb5fe6da7eaf2f75d.tar.bz2 plus-e5f77d32668cd1d5daa1b6deb5fe6da7eaf2f75d.tar.xz plus-e5f77d32668cd1d5daa1b6deb5fe6da7eaf2f75d.zip |
Fix include path for SDL_mixer.h
Diffstat (limited to 'src')
-rw-r--r-- | src/resources/music.h | 4 | ||||
-rw-r--r-- | src/resources/soundeffect.h | 4 | ||||
-rw-r--r-- | src/sound.h | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/src/resources/music.h b/src/resources/music.h index 59972cca3..a4b5b4973 100644 --- a/src/resources/music.h +++ b/src/resources/music.h @@ -25,11 +25,7 @@ #include "resources/resource.h" -#ifdef __APPLE__ -#include <SDL_mixer/SDL_mixer.h> -#else #include <SDL_mixer.h> -#endif /** * Defines a class for loading and storing music. diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h index 6e208479d..80f826646 100644 --- a/src/resources/soundeffect.h +++ b/src/resources/soundeffect.h @@ -25,11 +25,7 @@ #include "resources/resource.h" -#ifdef __APPLE__ -#include <SDL_mixer/SDL_mixer.h> -#else #include <SDL_mixer.h> -#endif /** * Defines a class for loading and storing sound effects. diff --git a/src/sound.h b/src/sound.h index 6a509a574..625dd0ea8 100644 --- a/src/sound.h +++ b/src/sound.h @@ -23,11 +23,7 @@ #ifndef SOUND_H #define SOUND_H -#ifdef __APPLE__ -#include <SDL_mixer/SDL_mixer.h> -#else #include <SDL_mixer.h> -#endif #include "configlistener.h" |