summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-15 18:54:01 +0200
committerwm4 <wm4@nowhere>2013-06-15 18:54:01 +0200
commit63ff79556f16d41727efc3fccbb4b29dda791c0e (patch)
tree15cc0545a8161eabee82f8b4cb6d11a460151198 /video
parent98e50d54778e0a568e1dfea848baa871b6349af6 (diff)
downloadmpv-63ff79556f16d41727efc3fccbb4b29dda791c0e.tar.bz2
mpv-63ff79556f16d41727efc3fccbb4b29dda791c0e.tar.xz
w32_common: fix non-sense
Seriously...
Diffstat (limited to 'video')
-rw-r--r--video/out/w32_common.c5
1 files changed, 3 insertions, 2 deletions
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;
}