summaryrefslogtreecommitdiffstats
path: root/video/out/vo_caca.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_caca.c')
-rw-r--r--video/out/vo_caca.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/video/out/vo_caca.c b/video/out/vo_caca.c
index 00b9e23123..bcef78534c 100644
--- a/video/out/vo_caca.c
+++ b/video/out/vo_caca.c
@@ -178,16 +178,14 @@ static void check_events(struct vo *vo)
mp_input_put_key(vo->input_ctx, MP_KEY_CLOSE_WIN);
break;
case CACA_EVENT_MOUSE_MOTION:
- vo_mouse_movement(vo, cev.data.mouse.x, cev.data.mouse.y);
+ mp_input_set_mouse_pos(vo->input_ctx, cev.data.mouse.x, cev.data.mouse.y);
break;
case CACA_EVENT_MOUSE_PRESS:
- if (vo->opts->enable_mouse_movements)
- mp_input_put_key(vo->input_ctx,
+ mp_input_put_key(vo->input_ctx,
(MP_MOUSE_BTN0 + cev.data.mouse.button - 1) | MP_KEY_STATE_DOWN);
break;
case CACA_EVENT_MOUSE_RELEASE:
- if (vo->opts->enable_mouse_movements)
- mp_input_put_key(vo->input_ctx,
+ mp_input_put_key(vo->input_ctx,
(MP_MOUSE_BTN0 + cev.data.mouse.button - 1) | MP_KEY_STATE_UP);
break;
case CACA_EVENT_KEY_PRESS: