Commit in reactos/subsys/win32k/objects on MAIN
bitmaps.c+3-11.79 -> 1.80
Take DC origin into account

reactos/subsys/win32k/objects
bitmaps.c 1.79 -> 1.80
diff -u -r1.79 -r1.80
--- bitmaps.c	14 Jul 2004 20:48:57 -0000	1.79
+++ bitmaps.c	23 Oct 2004 19:17:54 -0000	1.80
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: bitmaps.c,v 1.79 2004/07/14 20:48:57 navaraf Exp $ */
+/* $Id: bitmaps.c,v 1.80 2004/10/23 19:17:54 gvg Exp $ */
 #include <w32k.h>
 
 #define IN_RECT(r,x,y) \
@@ -548,6 +548,8 @@
 		SetLastWin32Error(ERROR_INVALID_HANDLE);
 		return Result;
 	}
+	XPos += dc->w.DCOrgX;
+	YPos += dc->w.DCOrgY;
 	if ( IN_RECT(dc->CombinedClip->rclBounds,XPos,YPos) )
 	{
 		bInRect = TRUE;
CVSspam 0.2.8