diff options
author | Max Horn | 2009-01-30 16:23:41 +0000 |
---|---|---|
committer | Max Horn | 2009-01-30 16:23:41 +0000 |
commit | e7afcecda279ff06b375a826cd7e49441dd6cf7e (patch) | |
tree | 1c731bd0ee252523e0f93422d9b69455722f90d8 /common | |
parent | e354c4b4f28ec5e67817fe3161ce163bd60e4748 (diff) | |
download | scummvm-rg350-e7afcecda279ff06b375a826cd7e49441dd6cf7e.tar.gz scummvm-rg350-e7afcecda279ff06b375a826cd7e49441dd6cf7e.tar.bz2 scummvm-rg350-e7afcecda279ff06b375a826cd7e49441dd6cf7e.zip |
Removed default implementations of OSystem::getOverlayHeight() and getOverlayWidth()
svn-id: r36152
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/system.h b/common/system.h index 8c05b6d756..913c19c70e 100644 --- a/common/system.h +++ b/common/system.h @@ -640,13 +640,13 @@ public: * Return the height of the overlay. * @see getHeight */ - virtual int16 getOverlayHeight() { return getHeight(); } + virtual int16 getOverlayHeight() = 0; /** * Return the width of the overlay. * @see getWidth */ - virtual int16 getOverlayWidth() { return getWidth(); } + virtual int16 getOverlayWidth() = 0; //@} |