diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-14 23:17:58 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-14 23:17:58 +0000 |
commit | 1c38618bb88e2e2b6f2c110382737e8e03c54a86 (patch) | |
tree | aa5a03382f0414b567dd07b0c595d0c73245316a /src/graphics.h | |
parent | 8e1c3b592c9ebcec9e006bcc54eea55bfea4a864 (diff) | |
download | mana-1c38618bb88e2e2b6f2c110382737e8e03c54a86.tar.gz mana-1c38618bb88e2e2b6f2c110382737e8e03c54a86.tar.bz2 mana-1c38618bb88e2e2b6f2c110382737e8e03c54a86.tar.xz mana-1c38618bb88e2e2b6f2c110382737e8e03c54a86.zip |
Started to fade out the useOpenGL global variable.
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphics.h b/src/graphics.h index 4b6bdd67..cdbc4104 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -48,7 +48,7 @@ public gcn::SDLGraphics { /** * Constructor. */ - Graphics(); + Graphics(bool useOpenGL); /** * Destructor. @@ -145,7 +145,7 @@ public gcn::SDLGraphics { private: SDL_Surface *mScreen; - bool mFullscreen, mHWAccel; + bool mFullscreen, mHWAccel, useOpenGL; }; #endif |