summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-04 19:38:47 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-04-04 19:38:47 +0000
commit475a831ac88b5e0661608e32522d28781308d1be (patch)
treed0978fe0f3784101e945ff04463e3e5074046cc3 /libvo
parentce1ade971d4016c9fb9514d1aaf7a934791d8abe (diff)
downloadmpv-475a831ac88b5e0661608e32522d28781308d1be.tar.bz2
mpv-475a831ac88b5e0661608e32522d28781308d1be.tar.xz
Fix width/height mixup in error message.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31009 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c
index e59ec25e47..5485df474d 100644
--- a/libvo/vo_gl2.c
+++ b/libvo/vo_gl2.c
@@ -201,7 +201,7 @@ static int initTextures(void)
if (format != gl_internal_format)
{
mp_msg (MSGT_VO, MSGL_V, "[gl2] Needed texture [%dx%d] too big, trying ",
- texture_height, texture_width);
+ texture_width, texture_height);
if (texture_width > texture_height)
texture_width /= 2;