diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-03 09:59:55 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-12-03 09:59:55 +0000 |
commit | 9902ca7c44ef8fdcf6ae10022217fe0a34b823a5 (patch) | |
tree | 9166eca109a19eb71a27fd7d0db5a50efea9d8b5 | |
parent | c40c93fe86606f97496cf5a8bd058a876df0d03f (diff) |
100l typo in 21380 disabled OSD with at least xvmc.
Patch by Andrew Cohen [cohen bu edu]
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21459 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/sub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/sub.c b/libvo/sub.c index c51dbd05cf..3b0edf8bf8 100644 --- a/libvo/sub.c +++ b/libvo/sub.c @@ -1006,7 +1006,7 @@ int vo_osd_check_range_update(int x1,int y1,int x2,int y2){ 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; |