aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/window_graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gargoyle/window_graphics.h')
-rw-r--r--engines/gargoyle/window_graphics.h18
1 files changed, 2 insertions, 16 deletions
diff --git a/engines/gargoyle/window_graphics.h b/engines/gargoyle/window_graphics.h
index 8e97b56019..5d08125697 100644
--- a/engines/gargoyle/window_graphics.h
+++ b/engines/gargoyle/window_graphics.h
@@ -82,24 +82,10 @@ public:
*/
virtual void redraw() override;
+ virtual void getSize(glui32 *width, glui32 *height) override;
+
glui32 drawPicture(glui32 image, glsi32 xpos, glsi32 ypos, int scale,
glui32 imagewidth, glui32 imageheight);
-
- /**
- * Get the window dimensions
- */
- void getSize(glui32 *w, glui32 *h) {
- *w = _w;
- *h = _h;
- }
-
- /**
- * Set the window dimensions
- */
- void setSize(glui32 w, glui32 h) {
- _w = w;
- _h = h;
- }
};
} // End of namespace Gargoyle