diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-04-04 19:39:54 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-04-04 19:39:54 +0000 |
commit | 5e8cfc72305795289152b5bb823abd049e728323 (patch) | |
tree | 8028340e12b481cde4df741f743a46194a6db138 /libvo | |
parent | 475a831ac88b5e0661608e32522d28781308d1be (diff) | |
download | mpv-5e8cfc72305795289152b5bb823abd049e728323.tar.bz2 mpv-5e8cfc72305795289152b5bb823abd049e728323.tar.xz |
Print width before height,
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31010 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_gl2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c index 5485df474d..8c3ee644bc 100644 --- a/libvo/vo_gl2.c +++ b/libvo/vo_gl2.c @@ -208,7 +208,7 @@ static int initTextures(void) else texture_height /= 2; - mp_msg (MSGT_VO, MSGL_V, "[%dx%d] !\n", texture_height, texture_width); + mp_msg (MSGT_VO, MSGL_V, "[%dx%d] !\n", texture_width, texture_height); if(texture_width < 64 || texture_height < 64) { mp_msg (MSGT_VO, MSGL_FATAL, "[gl2] Give up .. usable texture size not avaiable, or texture config error !\n"); |