summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2023-02-24 13:33:45 +0100
committersfan5 <sfan5@live.de>2023-02-24 13:33:45 +0100
commit0d991eba7242f1f7df6d62151305939c57956fe4 (patch)
treee86b3136aa13f072adfd8f5eb16d071cc13b3449 /video/out
parent3e85df3b2d89d6a27806d677b6b8a99055cb1fcc (diff)
downloadmpv-0d991eba7242f1f7df6d62151305939c57956fe4.tar.bz2
mpv-0d991eba7242f1f7df6d62151305939c57956fe4.tar.xz
vo_gpu: fix newline in log message
Diffstat (limited to 'video/out')
-rw-r--r--video/out/gpu/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gpu/video.c b/video/out/gpu/video.c
index 21c7f50910..678a89a436 100644
--- a/video/out/gpu/video.c
+++ b/video/out/gpu/video.c
@@ -4295,7 +4295,7 @@ struct mp_image *gl_video_get_image(struct gl_video *p, int imgfmt, int w, int h
{
if (flags & VO_DR_FLAG_HOST_CACHED) {
if (p->ra->caps & RA_CAP_SLOW_DR) {
- MP_VERBOSE(p, "DR path suspected slow/uncached, disabling..");
+ MP_VERBOSE(p, "DR path suspected slow/uncached, disabling.\n");
return NULL;
}
}