diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 11 |
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; |