From ff05f2dec69d9b1c28b710c425c4e1eff3c7a9ff Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sun, 10 Aug 2014 20:11:19 -0500 Subject: [PATCH] gdi32: Remove unused constant bit_fields_565. --- dlls/gdi32/dib.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dlls/gdi32/dib.c b/dlls/gdi32/dib.c index dd7a7f15da6..708a9a8b193 100644 --- a/dlls/gdi32/dib.c +++ b/dlls/gdi32/dib.c @@ -961,7 +961,6 @@ UINT WINAPI GetDIBColorTable( HDC hdc, UINT startpos, UINT entries, RGBQUAD *col } static const DWORD bit_fields_888[3] = {0xff0000, 0x00ff00, 0x0000ff}; -static const DWORD bit_fields_565[3] = {0xf800, 0x07e0, 0x001f}; static const DWORD bit_fields_555[3] = {0x7c00, 0x03e0, 0x001f}; static int fill_query_info( BITMAPINFO *info, BITMAPOBJ *bmp )