summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-24 19:14:36 +0200
committerwm4 <wm4@nowhere>2014-08-25 00:48:55 +0200
commitf7eea070f0f9347664839638396ad96dbb243832 (patch)
treed804d5f1ecc5639c3ae0dfac0a4988b0482aa841
parent758f8f7bd46388cba9330ad47701c0ebacc2d963 (diff)
downloadmpv-f7eea070f0f9347664839638396ad96dbb243832.tar.bz2
mpv-f7eea070f0f9347664839638396ad96dbb243832.tar.xz
vo_opengl: don't cut off feature list output
-rw-r--r--video/out/gl_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_common.c b/video/out/gl_common.c
index 1f1f02d4a3..d6f3708b01 100644
--- a/video/out/gl_common.c
+++ b/video/out/gl_common.c
@@ -121,7 +121,7 @@ static const struct feature features[] = {
static void list_features(int set, struct mp_log *log, int msgl, bool invert)
{
- char b[128] = {0};
+ char b[1024] = {0};
for (const struct feature *f = &features[0]; f->id; f++) {
if (invert == !(f->id & set))
mp_snprintf_cat(b, sizeof(b), " [%s]", f->name);