diff options
-rw-r--r-- | src/xine-engine/video_out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index fc227443c..35f66a719 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -1296,7 +1296,8 @@ static void *video_out_loop (void *this_gen) { if (usec_to_sleep > 0) { - if (0 == interruptable_sleep(this, usec_to_sleep)) + /* honor trigger update only when a backup img is available */ + if (0 == interruptable_sleep(this, usec_to_sleep) && this->img_backup) break; } |