Removed default implementations of OSystem::getOverlayHeight() and getOverlayWidth()

svn-id: r36152
This commit is contained in:
Max Horn 2009-01-30 16:23:41 +00:00
parent e354c4b4f2
commit e7afcecda2
2 changed files with 4 additions and 2 deletions

View File

@ -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);

View File

@ -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;
//@}