From 63ff79556f16d41727efc3fccbb4b29dda791c0e Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 15 Jun 2013 18:54:01 +0200 Subject: w32_common: fix non-sense Seriously... --- video/out/w32_common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'video') diff --git a/video/out/w32_common.c b/video/out/w32_common.c index 18f971050d..41b8855c20 100644 --- a/video/out/w32_common.c +++ b/video/out/w32_common.c @@ -700,12 +700,13 @@ int vo_w32_control(struct vo *vo, int *events, int request, void *arg) } else { while (ShowCursor(0) >= 0) { } } + return VO_TRUE; case VOCTRL_KILL_SCREENSAVER: w32->disable_screensaver = true; - break; + return VO_TRUE; case VOCTRL_RESTORE_SCREENSAVER: w32->disable_screensaver = false; - break; + return VO_TRUE; } return VO_NOTIMPL; } -- cgit v1.2.3