diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-17 15:11:19 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-17 15:11:19 +0000 |
commit | d0c97b98e477cfdf46ed7f36fd16c64f7943d551 (patch) | |
tree | 156acefaae842888432f923257b76bad12a16672 /src/graphic/graphic.h | |
parent | d9593657605b2e286b478718c89bcbe7cd341c43 (diff) | |
download | mana-d0c97b98e477cfdf46ed7f36fd16c64f7943d551.tar.gz mana-d0c97b98e477cfdf46ed7f36fd16c64f7943d551.tar.bz2 mana-d0c97b98e477cfdf46ed7f36fd16c64f7943d551.tar.xz mana-d0c97b98e477cfdf46ed7f36fd16c64f7943d551.zip |
Committing Allegro -> SDL switch, hugely breaking the game.
Diffstat (limited to 'src/graphic/graphic.h')
-rw-r--r-- | src/graphic/graphic.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/graphic/graphic.h b/src/graphic/graphic.h index 1887a77b..22388fc6 100644 --- a/src/graphic/graphic.h +++ b/src/graphic/graphic.h @@ -43,12 +43,12 @@ class Graphics; #include "../gui/skill.h" #include "../resources/resourcemanager.h" #include "spriteset.h" -#include <allegro.h> -#include <guichan/allegro.hpp> +#include <SDL.h> +#include <guichan/sdl.hpp> #define TILE_SIZE 32 -extern BITMAP *buffer; +extern SDL_Surface *screen; extern char speech[255]; extern char npc_text[1000]; extern char skill_points[10]; @@ -111,7 +111,7 @@ struct ImageRect { /** * A central point of control for graphics. */ -class Graphics : public gcn::AllegroGraphics { +class Graphics : public gcn::SDLGraphics { public: /** * Constructor. |