Commit 3d95f5e1 authored by Michael Karcher's avatar Michael Karcher Committed by Alexandre Julliard

winex11: Made local constant static.

parent 9e6a7661
......@@ -4031,8 +4031,8 @@ INT X11DRV_GetDIBits( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, UINT startscan,
int bitmap_type;
BOOL core_header;
void* colorPtr;
const PALETTEENTRY peBlack = {0,0,0,0};
const PALETTEENTRY peWhite = {255,255,255,0};
static const PALETTEENTRY peBlack = {0,0,0,0};
static const PALETTEENTRY peWhite = {255,255,255,0};
if (!physBitmap) return 0;
if (!(obj_size = GetObjectW( hbitmap, sizeof(dib), &dib ))) return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment