summaryrefslogtreecommitdiff
path: root/src/graphics.h
diff options
context:
space:
mode:
authorBjörn Steinbrink <B.Steinbrink@gmx.de>2005-09-18 11:22:27 +0000
committerBjörn Steinbrink <B.Steinbrink@gmx.de>2005-09-18 11:22:27 +0000
commitf22625d0e79cd943acf117c1e5bd32e4bbef5a2a (patch)
tree6996be4ae3914affbc40bdec951beba55d9e6603 /src/graphics.h
parent7329e1e48c9366695121eb32a18eecd91846354b (diff)
downloadMana-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.h7
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