cleanup patch

Marcus Meissner marcus at jet.franken.de
Sun Nov 18 08:58:14 CST 2001


> diff -u -r1.5 dib.c
> --- dlls/ddraw/dsurface/dib.c	10 Sep 2001 23:12:16 -0000	1.5
> +++ dlls/ddraw/dsurface/dib.c	18 Nov 2001 13:47:22 -0000
> @@ -386,7 +386,11 @@
>  
>      dbuf = (BYTE*)ddesc.lpSurface+(xdst.top*ddesc.u1.lPitch)+(xdst.left*bpp);
>  
> -    dwFlags &= ~(DDBLT_WAIT|DDBLT_ASYNC);/* FIXME: can't handle right now */
> +    if (dwFlags & (DDBLT_WAIT|DDBLT_ASYNC))
> +    {
> +	FIXME("dwFlags DDBLT_WAIT and/or DDBLT_ASYNC: can't handle right now.\n");
> +        dwFlags &= ~(DDBLT_WAIT|DDBLT_ASYNC);
> +    }


I do not want to see this FIXME 50 times or more per second.

Ciao, Marcus




More information about the wine-devel mailing list