Module: wine Branch: master Commit: e396288ec5e35b68b703470e95618ba6772f55e8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e396288ec5e35b68b703470e95...
Author: Francois Gouget fgouget@free.fr Date: Thu Oct 11 18:32:55 2007 +0200
winex11.drv: Remove an obsolete FIXME comment.
---
dlls/winex11.drv/dib.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/dib.c b/dlls/winex11.drv/dib.c index 9f402ef..153c967 100644 --- a/dlls/winex11.drv/dib.c +++ b/dlls/winex11.drv/dib.c @@ -510,7 +510,6 @@ static void X11DRV_DIB_SetImageBits_1( int lines, const BYTE *srcbits, /* ==== pal 1 dib -> any bmp format ==== */ for (h = lines-1; h >=0; h--) { srcbyte=srcbits; - /* FIXME: should avoid putting x<left pixels (minor speed issue) */ for (i = width/8, x = left; i > 0; i--) { srcval=*srcbyte++; XPutPixel( bmpImage, x++, h, colors[ srcval >> 7] );