diff options
author | David Athay <ko2fan@gmail.com> | 2009-01-18 20:04:39 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-18 14:11:08 -0700 |
commit | 4e481047718a4728549ae65128e42912b747c86d (patch) | |
tree | 2f139dd9e0a7db68ac2a9ab2c36f7d37613874dd /src | |
parent | 8c79a56c0f3710e20888d1031f179dc98f37e0a4 (diff) | |
download | mana-client-4e481047718a4728549ae65128e42912b747c86d.tar.gz mana-client-4e481047718a4728549ae65128e42912b747c86d.tar.bz2 mana-client-4e481047718a4728549ae65128e42912b747c86d.tar.xz mana-client-4e481047718a4728549ae65128e42912b747c86d.zip |
Updated some apple specific code
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/truetypefont.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/truetypefont.h b/src/gui/truetypefont.h index 67c39e6a..3d5d52ff 100644 --- a/src/gui/truetypefont.h +++ b/src/gui/truetypefont.h @@ -26,7 +26,11 @@ #include <guichan/font.hpp> #include <guichan/graphics.hpp> +#ifndef __APPLE__ #include <SDL/SDL_ttf.h> +#else +#include <SDL_ttf.h> +#endif /** * A wrapper around SDL_ttf for allowing the use of TrueType fonts. |