summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
Diffstat (limited to 'video')
-rw-r--r--video/out/vo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 774d2e2bd4..9d005647e2 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -703,7 +703,7 @@ void vo_set_paused(struct vo *vo, bool paused)
struct vo_internal *in = vo->in;
pthread_mutex_lock(&in->lock);
if (in->paused != paused) {
- in->paused = true;
+ in->paused = paused;
if (in->paused && in->dropped_frame)
in->request_redraw = true;
}