aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2003-08-02 00:36:38 +0000
committerMax Horn2003-08-02 00:36:38 +0000
commit103112dd3da9e9b8ee0610d4cc6dc4a8320f2b98 (patch)
tree7d65f9b26a214f40647f330831f7a2f627bc26fc /gui
parent208a3925e90999e7bd28b53571e27e1b7a1a36cb (diff)
downloadscummvm-rg350-103112dd3da9e9b8ee0610d4cc6dc4a8320f2b98.tar.gz
scummvm-rg350-103112dd3da9e9b8ee0610d4cc6dc4a8320f2b98.tar.bz2
scummvm-rg350-103112dd3da9e9b8ee0610d4cc6dc4a8320f2b98.zip
removed OSystem::set_mouse_pos (I hope I didn't break any backends, but if I did it should be trivial to get them working again)
svn-id: r9391
Diffstat (limited to 'gui')
-rw-r--r--gui/newgui.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index 5bdcb77df7..5a23fbfb19 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -164,7 +164,6 @@ void NewGui::runLoop() {
_currentKeyDown.keycode = 0;
break;
case OSystem::EVENT_MOUSEMOVE:
- _system->set_mouse_pos(event.mouse.x, event.mouse.y);
activeDialog->handleMouseMoved(event.mouse.x - activeDialog->_x, event.mouse.y - activeDialog->_y, 0);
break;
// We don't distinguish between mousebuttons (for now at least)