aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h
index 623d5a7e40..e59bbe4632 100644
--- a/common/system.h
+++ b/common/system.h
@@ -45,7 +45,6 @@ public:
/**
* The types of events backends can generate.
- * @todo Add events for quit request, and screen size change.
* @see Event
*/
enum EventCode {
@@ -112,6 +111,9 @@ public:
};
+ /** Virtual destructor */
+ virtual ~OSystem() {}
+
/** @name Graphics */
//@{
@@ -335,6 +337,8 @@ public:
virtual void clear_overlay() = 0;
virtual void grab_overlay(NewGuiColor *buf, int pitch) = 0;
virtual void copy_rect_overlay(const NewGuiColor *buf, int pitch, int x, int y, int w, int h) = 0;
+ virtual int16 get_overlay_height() { return get_height(); }
+ virtual int16 get_overlay_width() { return get_width(); }
//@}