Common subdirectories: main/libvo/CVS and blub/libvo/CVS diff -u main/libvo/vo_xmga.c blub/libvo/vo_xmga.c --- main/libvo/vo_xmga.c Sat Apr 27 15:09:35 2002 +++ blub/libvo/vo_xmga.c Thu May 2 21:59:34 2002 @@ -139,7 +139,7 @@ /* find the screen we are on */ i = 0; - while(!(screens[i].x_org <= drwcX && screens[i].y_org <= drwcY && + while(!(screens[i].x_org < drwcX && screens[i].y_org < drwcY && screens[i].x_org + screens[i].width >= drwcX && screens[i].y_org + screens[i].height >= drwcY )) { diff -u main/libvo/vo_xvidix.c blub/libvo/vo_xvidix.c --- main/libvo/vo_xvidix.c Sat Apr 27 15:09:35 2002 +++ blub/libvo/vo_xvidix.c Thu May 2 21:59:50 2002 @@ -112,7 +112,7 @@ screens = XineramaQueryScreens(mDisplay, &num_screens); /* find the screen we are on */ - while ((screens[i].x_org <= drwcX) || (screens[i].y_org <= drwcY) || + while ((screens[i].x_org < drwcX) || (screens[i].y_org < drwcY) || (screens[i].x_org + screens[i].width >= drwcX) || (screens[i].y_org + screens[i].height >= drwcY)) i++;