# HG changeset patch # User Sam Lantinga # Date 1234678372 0 # Node ID 8cbf68bdf81b1233746c0d2e35fea9235c349a10 # Parent a728b8b779d1a8552c78c97f898862fc98c84433 Fixed destination of XCopyArea() diff -r a728b8b779d1 -r 8cbf68bdf81b src/video/x11/SDL_x11render.c --- a/src/video/x11/SDL_x11render.c Sat Feb 14 15:56:26 2009 +0000 +++ b/src/video/x11/SDL_x11render.c Sun Feb 15 06:12:52 2009 +0000 @@ -683,7 +683,7 @@ } else { XCopyArea(data->display, texturedata->pixmap, data->drawable, data->gc, srcrect->x, srcrect->y, dstrect->w, - dstrect->h, srcrect->x, srcrect->y); + dstrect->h, dstrect->x, dstrect->y); } } else if (texturedata->yuv || texture->access == SDL_TEXTUREACCESS_STREAMING) {