summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 02d51bf7b6..f3af26273d 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -586,10 +586,7 @@ const char *vo_get_window_title(struct vo *vo)
*/
void vo_mouse_movement(struct vo *vo, int posx, int posy)
{
- char cmd_str[40];
- if (!vo->opts->enable_mouse_movements)
- return;
- snprintf(cmd_str, sizeof(cmd_str), "set_mouse_pos %i %i", posx, posy);
- mp_input_queue_cmd(vo->input_ctx, mp_input_parse_cmd(bstr0(cmd_str), ""));
+ if (!vo->opts->enable_mouse_movements)
+ return;
+ mp_input_set_mouse_pos(vo->input_ctx, posx, posy);
}
-