summaryrefslogtreecommitdiff
path: root/src/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics.h')
-rw-r--r--src/graphics.h4
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