From e267ff93f32783e324c93395ab135e5b26f0efe1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 4 Sep 2014 22:53:50 +0200 Subject: video: rename VOCTRL_GET_WINDOW_SIZE Make it clear that this accesses the un-fullscreened window size. --- video/out/w32_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'video/out/w32_common.c') diff --git a/video/out/w32_common.c b/video/out/w32_common.c index ed23727754..df2c53128f 100644 --- a/video/out/w32_common.c +++ b/video/out/w32_common.c @@ -1100,7 +1100,7 @@ static int gui_thread_control(struct vo_w32_state *w32, int *events, reinit_window_state(w32); *events |= VO_EVENT_RESIZE; return VO_TRUE; - case VOCTRL_GET_WINDOW_SIZE: { + case VOCTRL_GET_UNFS_WINDOW_SIZE: { int *s = arg; if (!w32->window_bounds_initialized) @@ -1110,7 +1110,7 @@ static int gui_thread_control(struct vo_w32_state *w32, int *events, s[1] = w32->current_fs ? w32->prev_height : w32->dh; return VO_TRUE; } - case VOCTRL_SET_WINDOW_SIZE: { + case VOCTRL_SET_UNFS_WINDOW_SIZE: { int *s = arg; if (!w32->window_bounds_initialized) -- cgit v1.2.3