Mercurial > mplayer.hg
changeset 30967:d42621e5f66a
Fix width/height mixup in error message.
author | reimar |
---|---|
date | Sun, 04 Apr 2010 19:38:47 +0000 |
parents | eaf5996f5a9a |
children | 6daa73f57ced |
files | libvo/vo_gl2.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;