1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-25 00:02:13 +00:00

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
This commit is contained in:
reimar 2006-12-03 09:59:55 +00:00
parent c40c93fe86
commit 9902ca7c44

View File

@ -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;