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