# HG changeset patch # User reimar # Date 1270409927 0 # Node ID d42621e5f66a7c61a0e5fdddd77edc6a64dce4da # Parent eaf5996f5a9a19cb6b1d1919c71a0fd264777492 Fix width/height mixup in error message. diff -r eaf5996f5a9a -r d42621e5f66a libvo/vo_gl2.c --- a/libvo/vo_gl2.c Sun Apr 04 17:57:00 2010 +0000 +++ b/libvo/vo_gl2.c Sun Apr 04 19:38:47 2010 +0000 @@ -201,7 +201,7 @@ 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;