Fixed typo in X11DRV_SetPixel.

This commit is contained in:
Alexandre Julliard 2002-06-28 17:38:59 +00:00
parent 88773cd403
commit 5dcd27c94f

View file

@ -880,7 +880,7 @@ X11DRV_SetPixel( X11DRV_PDEVICE *physDev, INT x, INT y, COLORREF color )
XSetForeground( gdi_display, physDev->gc, pixel );
XSetFunction( gdi_display, physDev->gc, GXcopy );
XDrawPoint( gdi_display, physDev->drawable, physDev->gc,
physDev->org.x + pt.x, physDev->org.y + y );
physDev->org.x + pt.x, physDev->org.y + pt.y );
wine_tsx11_unlock();
/* Update the DIBSection from the pixmap */