diff options
author | wm4 <wm4@nowhere> | 2014-05-22 09:28:28 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-05-22 09:28:28 +0200 |
commit | 09386b173e438204591251424b896b73998a16b0 (patch) | |
tree | 539c27a8a969072926c8bd89ba05e85df12d4792 /video/out | |
parent | 85c3459bf8878d522bf96e15f4ef0d87f1f51fd0 (diff) | |
download | mpv-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.
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/vo.c | 4 |
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) |