summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-22 09:28:28 +0200
committerwm4 <wm4@nowhere>2014-05-22 09:28:28 +0200
commit09386b173e438204591251424b896b73998a16b0 (patch)
tree539c27a8a969072926c8bd89ba05e85df12d4792
parent85c3459bf8878d522bf96e15f4ef0d87f1f51fd0 (diff)
downloadmpv-09386b173e438204591251424b896b73998a16b0.tar.bz2
mpv-09386b173e438204591251424b896b73998a16b0.tar.xz
vo: remove config_ok check from vo_check_events()
This should be ok now after the x11 code was adjusted.
-rw-r--r--video/out/vo.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 8cf867ef3b..a73ce61ff7 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -381,9 +381,7 @@ void vo_flip_page(struct vo *vo, int64_t pts_us, int duration)
void vo_check_events(struct vo *vo)
{
- if (vo->config_ok) {
- vo_control(vo, VOCTRL_CHECK_EVENTS, NULL);
- }
+ vo_control(vo, VOCTRL_CHECK_EVENTS, NULL);
}
void vo_seek_reset(struct vo *vo)