mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 03:56:20 +00:00
Removed default implementations of OSystem::getOverlayHeight() and getOverlayWidth()
svn-id: r36152
This commit is contained in:
parent
e354c4b4f2
commit
e7afcecda2
@ -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…
Reference in New Issue
Block a user