aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2015-12-26 14:58:02 +0100
committerStrangerke2015-12-26 14:58:02 +0100
commita8d7a9bb7c20a303ac827773dcc6165e363f3688 (patch)
treed3ffcdd6e9f77c8e1deaf29c625dfce104eee0f4 /engines
parent2560fdb19145cf3b035f6cb24b048adec1b656f1 (diff)
downloadscummvm-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.cpp7
-rw-r--r--engines/lab/eventman.h5
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();
/**