diff options
author | David Athay <ko2fan@gmail.com> | 2011-11-17 19:38:52 -0600 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-12-02 18:42:15 +0100 |
commit | 4a4637fd522ed7702e9b1e4b970495d90f56e5cd (patch) | |
tree | 86f6252c553bc44553495f49b901e2543d60f1bb /src | |
parent | 46b94ce1eaac395fe6559206c803a076ec44f852 (diff) | |
download | mana-4a4637fd522ed7702e9b1e4b970495d90f56e5cd.tar.gz mana-4a4637fd522ed7702e9b1e4b970495d90f56e5cd.tar.bz2 mana-4a4637fd522ed7702e9b1e4b970495d90f56e5cd.tar.xz mana-4a4637fd522ed7702e9b1e4b970495d90f56e5cd.zip |
Mac: Change to local SDL inclues.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/truetypefont.h | 2 | ||||
-rw-r--r-- | src/resources/music.h | 2 | ||||
-rw-r--r-- | src/resources/soundeffect.h | 2 | ||||
-rw-r--r-- | src/sound.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/truetypefont.h b/src/gui/truetypefont.h index 41db3f86..ade1013e 100644 --- a/src/gui/truetypefont.h +++ b/src/gui/truetypefont.h @@ -26,7 +26,7 @@ #include <guichan/font.hpp> #ifdef __APPLE__ -#include <SDL_ttf/SDL_ttf.h> +#include <SDL/SDL_ttf.h> #else #ifdef __WIN32__ #include <SDL/SDL_ttf.h> diff --git a/src/resources/music.h b/src/resources/music.h index 2556c1ee..1d040706 100644 --- a/src/resources/music.h +++ b/src/resources/music.h @@ -25,7 +25,7 @@ #include "resources/resource.h" #ifdef __APPLE__ -#include <SDL_mixer/SDL_mixer.h> +#include <SDL/SDL_mixer.h> #else #include <SDL_mixer.h> #endif diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h index bc499a96..5c493678 100644 --- a/src/resources/soundeffect.h +++ b/src/resources/soundeffect.h @@ -25,7 +25,7 @@ #include "resources/resource.h" #ifdef __APPLE__ -#include <SDL_mixer/SDL_mixer.h> +#include <SDL/SDL_mixer.h> #else #include <SDL_mixer.h> #endif diff --git a/src/sound.h b/src/sound.h index 032ff62b..dbec3fc9 100644 --- a/src/sound.h +++ b/src/sound.h @@ -23,7 +23,7 @@ #define SOUND_H #ifdef __APPLE__ -#include <SDL_mixer/SDL_mixer.h> +#include <SDL/SDL_mixer.h> #else #include <SDL_mixer.h> #endif |