diff options
-rw-r--r-- | src/video_out/video_out_xcbxv.c | 2 | ||||
-rw-r--r-- | src/video_out/video_out_xv.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c index 1c31804ef..7ce165eab 100644 --- a/src/video_out/video_out_xcbxv.c +++ b/src/video_out/video_out_xcbxv.c @@ -558,7 +558,7 @@ static void xv_flush_recent_frames (xv_driver_t *this) { static int xv_redraw_needed (vo_driver_t *this_gen) { xv_driver_t *this = (xv_driver_t *) this_gen; - int ret = 0; + int ret = !this->cm_active; if( this->cur_frame ) { diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 145e114d1..75cf12e13 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.c @@ -636,7 +636,7 @@ static void xv_flush_recent_frames (xv_driver_t *this) { static int xv_redraw_needed (vo_driver_t *this_gen) { xv_driver_t *this = (xv_driver_t *) this_gen; - int ret = 0; + int ret = !this->cm_active; if( this->cur_frame ) { |