diff options
author | Strangerke | 2015-12-26 14:58:02 +0100 |
---|---|---|
committer | Strangerke | 2015-12-26 14:58:02 +0100 |
commit | a8d7a9bb7c20a303ac827773dcc6165e363f3688 (patch) | |
tree | d3ffcdd6e9f77c8e1deaf29c625dfce104eee0f4 /engines | |
parent | 2560fdb19145cf3b035f6cb24b048adec1b656f1 (diff) | |
download | scummvm-rg350-a8d7a9bb7c20a303ac827773dcc6165e363f3688.tar.gz scummvm-rg350-a8d7a9bb7c20a303ac827773dcc6165e363f3688.tar.bz2 scummvm-rg350-a8d7a9bb7c20a303ac827773dcc6165e363f3688.zip |
LAB: Remove unused function in EventManager
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lab/eventman.cpp | 7 | ||||
-rw-r--r-- | engines/lab/eventman.h | 5 |
2 files changed, 0 insertions, 12 deletions
diff --git a/engines/lab/eventman.cpp b/engines/lab/eventman.cpp index 823b6b45e9..2de42110d2 100644 --- a/engines/lab/eventman.cpp +++ b/engines/lab/eventman.cpp @@ -148,13 +148,6 @@ void EventManager::mouseHide() { _vm->_system->showMouse(false); } -Common::Point EventManager::getMousePos() { - if (_vm->_isHiRes) - return _mousePos; - else - return Common::Point(_mousePos.x / 2, _mousePos.y); -} - void EventManager::setMousePos(Common::Point pos) { if (_vm->_isHiRes) _vm->_system->warpMouse(pos.x, pos.y); diff --git a/engines/lab/eventman.h b/engines/lab/eventman.h index 34cd3b0492..495c929c48 100644 --- a/engines/lab/eventman.h +++ b/engines/lab/eventman.h @@ -102,11 +102,6 @@ public: void freeButtonList(ButtonList *buttonList); Button *getButton(uint16 id); - /** - * Gets the current mouse co-ordinates. NOTE: On IBM version, will scale - * from virtual to screen co-ordinates automatically. - */ - Common::Point getMousePos(); IntuiMessage *getMsg(); /** |