[MPlayer-cvslog] r31009 - trunk/libvo/vo_gl2.c

reimar subversion at mplayerhq.hu
Sun Apr 4 21:38:47 CEST 2010


Author: reimar
Date: Sun Apr  4 21:38:47 2010
New Revision: 31009

Log:
Fix width/height mixup in error message.

Modified:
   trunk/libvo/vo_gl2.c

Modified: trunk/libvo/vo_gl2.c
==============================================================================
--- trunk/libvo/vo_gl2.c	Sun Apr  4 19:57:00 2010	(r31008)
+++ trunk/libvo/vo_gl2.c	Sun Apr  4 21:38:47 2010	(r31009)
@@ -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;


More information about the MPlayer-cvslog mailing list