Mercurial > mplayer.hg
changeset 21443:862b3942429c
100l typo in 21380 disabled OSD with at least xvmc.
Patch by Andrew Cohen [cohen bu edu]
author | reimar |
---|---|
date | Sun, 03 Dec 2006 09:59:55 +0000 |
parents | f95a872702d5 |
children | ce7567436cb0 |
files | libvo/sub.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/sub.c Sun Dec 03 06:38:45 2006 +0000 +++ b/libvo/sub.c Sun Dec 03 09:59:55 2006 +0000 @@ -1006,7 +1006,7 @@ if(obj->flags&OSDFLAG_VISIBLE){ if( (obj->bbox.x1<=x2 && obj->bbox.x2>=x1) && (obj->bbox.y1<=y2 && obj->bbox.y2>=y1) && - obj->bbox.y2 > obj->bbox.y1 && obj->bbox.x1 > obj->bbox.x2 + obj->bbox.y2 > obj->bbox.y1 && obj->bbox.x2 > obj->bbox.x1 ) return 1; } obj=obj->next;