Commit 5dcd27c9 authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed typo in X11DRV_SetPixel.

parent 88773cd4
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment