aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2009-01-30 16:23:41 +0000
committerMax Horn2009-01-30 16:23:41 +0000
commite7afcecda279ff06b375a826cd7e49441dd6cf7e (patch)
tree1c731bd0ee252523e0f93422d9b69455722f90d8 /backends
parente354c4b4f28ec5e67817fe3161ce163bd60e4748 (diff)
downloadscummvm-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 'backends')
-rw-r--r--backends/platform/ps2/systemps2.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/platform/ps2/systemps2.h b/backends/platform/ps2/systemps2.h
index c0a8b9af60..7f29677ba5 100644
--- a/backends/platform/ps2/systemps2.h
+++ b/backends/platform/ps2/systemps2.h
@@ -76,6 +76,8 @@ public:
virtual void clearOverlay();
virtual void grabOverlay(OverlayColor *buf, int pitch);
virtual void copyRectToOverlay(const OverlayColor *buf, int pitch, int x, int y, int w, int h);
+ virtual int16 getOverlayHeight() { return getHeight(); }
+ virtual int16 getOverlayWidth() { return getWidth(); }
virtual bool showMouse(bool visible);