diff options
author | Max Horn | 2007-07-08 12:02:38 +0000 |
---|---|---|
committer | Max Horn | 2007-07-08 12:02:38 +0000 |
commit | 41c68ac3e42b157529cf8fd670e774f5be72911a (patch) | |
tree | fd42d23de718e365745b3e13f176aaa22f69c0ec /common | |
parent | a7a62d3c9ddbb66c19035144a827b7ce832d9e90 (diff) | |
download | scummvm-rg350-41c68ac3e42b157529cf8fd670e774f5be72911a.tar.gz scummvm-rg350-41c68ac3e42b157529cf8fd670e774f5be72911a.tar.bz2 scummvm-rg350-41c68ac3e42b157529cf8fd670e774f5be72911a.zip |
Removed various obsolete methods from OSystem (screenToOverlayX/Y, overlayToScreenX/Y)
svn-id: r27961
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/system.h b/common/system.h index 34f945642c..79680c4655 100644 --- a/common/system.h +++ b/common/system.h @@ -599,11 +599,6 @@ public: */ virtual int16 getOverlayWidth() { return getWidth(); } - virtual int screenToOverlayX(int x) { return x; } - virtual int screenToOverlayY(int y) { return y; } - virtual int overlayToScreenX(int x) { return x; } - virtual int overlayToScreenY(int y) { return y; } - /** * Convert the given RGB triplet into an OverlayColor. A OverlayColor can * be 8bit, 16bit or 32bit, depending on the target system. The default |