From 1f9d6c48971016633a8dc5cdab1de46c6424d3a9 Mon Sep 17 00:00:00 2001 From: attila Date: Sun, 25 Jun 2006 16:18:50 +0000 Subject: [PATCH] 10l fix 1023 <-> 1024 typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18819 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/mga_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvo/mga_common.c b/libvo/mga_common.c index a6a6e7b396..20e564cf7c 100644 --- a/libvo/mga_common.c +++ b/libvo/mga_common.c @@ -371,7 +371,7 @@ static int mga_init(int width,int height,unsigned int format){ return (-1); } - if(width>1023 || height >1024) + if(width>1023 || height >1023) { mp_msg(MSGT_VO,MSGL_ERR, MGSTR_LIBVO_MGA_ResolutionTooHigh); return (-1);