Removed default implementations of OSystem::getOverlayHeight() and getOverlayWidth()
svn-id: r36152
This commit is contained in:
parent
e354c4b4f2
commit
e7afcecda2
2 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
//@}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue