summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorattila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-25 16:18:50 +0000
committerattila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-25 16:18:50 +0000
commit1f9d6c48971016633a8dc5cdab1de46c6424d3a9 (patch)
tree0cd985d9f2b7af8b2976861c34b834476e6216ac /libvo
parent3fe081dc4130f6e65b9708257cdebcf535bf24f3 (diff)
downloadmpv-1f9d6c48971016633a8dc5cdab1de46c6424d3a9.tar.bz2
mpv-1f9d6c48971016633a8dc5cdab1de46c6424d3a9.tar.xz
10l
fix 1023 <-> 1024 typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18819 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/mga_common.c2
1 files changed, 1 insertions, 1 deletions
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);