--- ../wine-old1/graphics/x11drv/dib.c	Wed Jun  5 01:16:58 2002
+++ graphics/x11drv/dib.c	Thu Jun 20 21:49:55 2002
@@ -17,6 +17,8 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
+ /* Changelog: 20/6/2002 : some hack for partial dib on negative-y axis
+  * solves  bug #720 !
+ */
 
 #include "config.h"

@@ -4795,9 +4797,11 @@
     descr.gc        = physDev->gc;
     descr.xSrc      = xSrc;
     descr.ySrc      = tmpheight >= 0 ? lines-(ySrc-startscan)-cy+(oldcy-cy)
-                                     : ySrc - startscan;
-    descr.xDest     = dc->DCOrgX + XLPTODP( dc, xDest );
-    descr.yDest     = dc->DCOrgY + YLPTODP( dc, yDest ) +
+										: lines-(ySrc-startscan)-cy+(oldcy-cy);
+                                     /*:  ySrc - startscan; / * 0- */
+					/* The hack above was found by trial and error. Report any objections please! */
+	descr.xDest     = physDev->org.x + XLPTODP( dc, xDest );
+    descr.yDest     = physDev->org.y + YLPTODP( dc, yDest ) +
                                      (tmpheight >= 0 ? oldcy-cy : 0);
     descr.width     = cx;
     descr.height    = cy;
