aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2003-08-02 00:36:38 +0000
committerMax Horn2003-08-02 00:36:38 +0000
commit103112dd3da9e9b8ee0610d4cc6dc4a8320f2b98 (patch)
tree7d65f9b26a214f40647f330831f7a2f627bc26fc /common
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 'common')
-rw-r--r--common/system.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/common/system.h b/common/system.h
index 5814e7a3c8..51fca24f66 100644
--- a/common/system.h
+++ b/common/system.h
@@ -198,17 +198,8 @@ public:
/** Show or hide the mouse cursor. */
virtual bool show_mouse(bool visible) = 0;
- /**
- * Set the position of the mouse cursor.
- * @see warp_mouse
- */
- virtual void set_mouse_pos(int x, int y) = 0;
-
/**
- * Warp the mouse cursor to the specified position. Where set_mouse_pos()
- * only informs the backend of the mouse cursor's current position, this
- * function actually moves the cursor to the specified position.
- * @see set_mouse_pos
+ * Move ("warp) the mouse cursor to the specified position.
*/
virtual void warp_mouse(int x, int y) = 0;