diff options
-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(); /** |