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