diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-13 22:44:23 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-07-13 22:44:23 +0000 |
commit | 4ecc89dcc6516b10c6dab8b79dcaa435ec9e1435 (patch) | |
tree | af49a9d05531e9cf9c87b6ad543338c2d68de4ee /src/graphics.h | |
parent | 1ae9c54d120338e4165d168c72ef16eb7f76ac18 (diff) | |
download | mana-4ecc89dcc6516b10c6dab8b79dcaa435ec9e1435.tar.gz mana-4ecc89dcc6516b10c6dab8b79dcaa435ec9e1435.tar.bz2 mana-4ecc89dcc6516b10c6dab8b79dcaa435ec9e1435.tar.xz mana-4ecc89dcc6516b10c6dab8b79dcaa435ec9e1435.zip |
* Committing some cleanups by Doener
* Fixed some compiler warnings
* Restored a USE_OPENGL check around OpenGL headers
* Fixed error about FALSE not being defined
* Fixed issue with font to become speechFont when the latter is not installed
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graphics.h b/src/graphics.h index 279a611a..78d4a3e6 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -26,8 +26,10 @@ #include <guichan/sdl.hpp> #include <SDL.h> +#ifdef USE_OPENGL #include <guichan/opengl.hpp> #include <SDL_opengl.h> +#endif #include "resources/image.h" extern SDL_Surface *screen; |