diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-09-18 11:22:27 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-09-18 11:22:27 +0000 |
commit | f22625d0e79cd943acf117c1e5bd32e4bbef5a2a (patch) | |
tree | 6996be4ae3914affbc40bdec951beba55d9e6603 /src/graphics.h | |
parent | 7329e1e48c9366695121eb32a18eecd91846354b (diff) | |
download | mana-f22625d0e79cd943acf117c1e5bd32e4bbef5a2a.tar.gz mana-f22625d0e79cd943acf117c1e5bd32e4bbef5a2a.tar.bz2 mana-f22625d0e79cd943acf117c1e5bd32e4bbef5a2a.tar.xz mana-f22625d0e79cd943acf117c1e5bd32e4bbef5a2a.zip |
Move the writing logic out of the Graphics class once again... Some cleanups in the screenshot filename selection code.
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/graphics.h b/src/graphics.h index 18a3be51..a0749795 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -120,11 +120,6 @@ class Graphics : public gcn::SDLGraphics { int getHeight(); /** - * takes a screenshot, and saves it as a png - */ - bool saveScreenshot(); - - /** * takes a screenshot and returns it as SDL surface */ virtual SDL_Surface* getScreenshot(); @@ -132,8 +127,6 @@ class Graphics : public gcn::SDLGraphics { protected: SDL_Surface *mScreen; bool mFullscreen, mHWAccel; - private: - int screenshotsCount; }; #endif |