mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
LAB: Remove unused function in EventManager
This commit is contained in:
parent
2560fdb191
commit
a8d7a9bb7c
@ -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);
|
||||
|
@ -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();
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user