Module: wine Branch: master Commit: f2c94fa1380c9e91618a405f9a8526dc1f9fc922 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2c94fa1380c9e91618a405f9a...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Wed Apr 21 19:43:22 2010 +0200
user32: Remove variable mask which is not really used from check_alpha_draw.
---
dlls/user32/tests/cursoricon.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/cursoricon.c b/dlls/user32/tests/cursoricon.c index 8534875..eb22ce4 100644 --- a/dlls/user32/tests/cursoricon.c +++ b/dlls/user32/tests/cursoricon.c @@ -1005,11 +1005,9 @@ static BOOL color_match(COLORREF a, COLORREF b) static void check_alpha_draw(HDC hdc, BOOL drawiconex, BOOL alpha, int bpp, int line) { HICON hicon; - UINT32 mask; UINT32 color[2]; COLORREF modern_expected, legacy_expected, result;
- mask = 0x00000000; color[0] = 0x00A0B0C0; color[1] = alpha ? 0xFF000000 : 0x00000000; modern_expected = alpha ? 0x00FFFFFF : 0x00C0B0A0;