summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/x11_common.c9
-rw-r--r--video/out/x11_common.h2
2 files changed, 5 insertions, 6 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c
index b0082086bb..ee19e1be73 100644
--- a/video/out/x11_common.c
+++ b/video/out/x11_common.c
@@ -1019,7 +1019,7 @@ static void vo_x11_check_net_wm_state_fullscreen_change(struct vo *vo)
}
}
-int vo_x11_check_events(struct vo *vo)
+void vo_x11_check_events(struct vo *vo)
{
struct vo_x11_state *x11 = vo->x11;
Display *display = vo->x11->display;
@@ -1178,9 +1178,6 @@ int vo_x11_check_events(struct vo *vo)
}
update_vo_size(vo);
- int ret = x11->pending_vo_events;
- x11->pending_vo_events = 0;
- return ret;
}
static void vo_x11_sizehint(struct vo *vo, struct mp_rect rc, bool override_pos)
@@ -1791,7 +1788,9 @@ int vo_x11_control(struct vo *vo, int *events, int request, void *arg)
struct vo_x11_state *x11 = vo->x11;
switch (request) {
case VOCTRL_CHECK_EVENTS:
- *events |= vo_x11_check_events(vo);
+ vo_x11_check_events(vo);
+ *events |= x11->pending_vo_events;
+ x11->pending_vo_events = 0;
return VO_TRUE;
case VOCTRL_FULLSCREEN:
opts->fullscreen = !opts->fullscreen;
diff --git a/video/out/x11_common.h b/video/out/x11_common.h
index d861b32d1c..213d517205 100644
--- a/video/out/x11_common.h
+++ b/video/out/x11_common.h
@@ -128,7 +128,7 @@ struct vo_x11_state {
int vo_x11_init(struct vo *vo);
void vo_x11_uninit(struct vo *vo);
-int vo_x11_check_events(struct vo *vo);
+void vo_x11_check_events(struct vo *vo);
bool vo_x11_screen_is_composited(struct vo *vo);
bool vo_x11_create_vo_window(struct vo *vo, XVisualInfo *vis,
const char *classname);