winex11: Remove variable bits which is not really used from X11DRV_DIB_GetImageBits_32.
This commit is contained in:
parent
d0f1b68416
commit
75c738e9e1
|
@ -3184,7 +3184,6 @@ static void X11DRV_DIB_GetImageBits_32( X11DRV_PDEVICE *physDev, int lines, BYTE
|
|||
{
|
||||
DWORD x;
|
||||
int h, width = min(srcwidth, dstwidth);
|
||||
BYTE *bits;
|
||||
const dib_conversions *convs = (bmpImage->byte_order == LSBFirst) ? &dib_normal : &dib_src_byteswap;
|
||||
|
||||
if (lines < 0 )
|
||||
|
@ -3194,8 +3193,6 @@ static void X11DRV_DIB_GetImageBits_32( X11DRV_PDEVICE *physDev, int lines, BYTE
|
|||
linebytes = -linebytes;
|
||||
}
|
||||
|
||||
bits = dstbits;
|
||||
|
||||
switch (bmpImage->depth)
|
||||
{
|
||||
case 24:
|
||||
|
|
Loading…
Reference in New Issue