winex11: Fix regression caused by client-side DIB copy patch.

This commit is contained in:
Damjan Jovanovic 2006-11-07 20:59:31 +02:00 committed by Alexandre Julliard
parent ed58b1bad0
commit d29c9c84b4
1 changed files with 1 additions and 1 deletions

View File

@ -1574,7 +1574,7 @@ static BOOL X11DRV_ClientSideDIBCopy( X11DRV_PDEVICE *physDevSrc, INT xSrc, INT
FIXME("potential optimization: client-side compressed DIB copy\n");
return FALSE;
}
if (srcDib.dsBm.bmHeight < 0 || dstDib.dsBm.bmHeight < 0)
if (srcDib.dsBmih.biHeight < 0 || dstDib.dsBmih.biHeight < 0)
{
FIXME("potential optimization: client-side bottom-up DIB copy\n");
return FALSE;