LAB: Remove unused function in EventManager

This commit is contained in:
Strangerke 2015-12-26 14:58:02 +01:00
parent 2560fdb191
commit a8d7a9bb7c
2 changed files with 0 additions and 12 deletions

View File

@ -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);

View File

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