aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/tony/window.cpp3
-rw-r--r--engines/tony/window.h11
2 files changed, 0 insertions, 14 deletions
diff --git a/engines/tony/window.cpp b/engines/tony/window.cpp
index c412a53655..9385db27c7 100644
--- a/engines/tony/window.cpp
+++ b/engines/tony/window.cpp
@@ -57,9 +57,6 @@ void RMWindow::init() {
Graphics::PixelFormat pixelFormat(2, 5, 5, 5, 0, 10, 5, 0, 0);
initGraphics(RM_SX, RM_SY, true, &pixelFormat);
- // Initialize FPS counters
- fps = lastfcount = fcount = lastsecond = 0;
-
_bGrabScreenshot = false;
_bGrabThumbnail = false;
_bGrabMovie = false;
diff --git a/engines/tony/window.h b/engines/tony/window.h
index 4dfd63a3d8..9aaca16d3e 100644
--- a/engines/tony/window.h
+++ b/engines/tony/window.h
@@ -35,10 +35,6 @@
namespace Tony {
-typedef uint32 HWND;
-struct DDSURFACEDESC {
-};
-
class RMSnapshot {
private:
// Buffer used to convert to RGB
@@ -57,10 +53,6 @@ private:
void plotLines(const byte *lpBuf, const Common::Point &center, int x, int y);
protected:
- int fps, fcount;
- int lastsecond, lastfcount;
-
- int mskRed, mskGreen, mskBlue;
bool _wiping;
bool _showDirtyRects;
@@ -98,9 +90,6 @@ public:
*/
void grabThumbnail(uint16 *buf);
- int getFps() const {
- return fps;
- }
void showDirtyRects(bool v) { _showDirtyRects = v; }
};