diff options
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/graphics.h b/src/graphics.h index 2e23b382..cffdb143 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -195,12 +195,12 @@ class Graphics : public gcn::SDLGraphics virtual void updateScreen(); /** - * Returns the width of the screen. + * Returns the width of the drawable surface. */ int getWidth() const { return mWidth; } /** - * Returns the height of the screen. + * Returns the height of the drawable surface. */ int getHeight() const { return mHeight; } @@ -241,6 +241,7 @@ class Graphics : public gcn::SDLGraphics bool mFullscreen; bool mHWAccel; BlitMode mBlitMode; + SDL_Surface *mScreenSurface; }; extern Graphics *graphics; |