diff libvo/sub.c @ 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 d81ffbf9615f
children 8a710a7b68ea
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;