From 1dbdcfbeabd445d7addc28c6aa93c41567662df1 Mon Sep 17 00:00:00 2001 From: Matthias Kupfer Date: Sun, 17 May 2009 11:28:40 +0000 Subject: [PATCH] - use system background color instead of fixed one - TODO: apply to buttons (still bitmaps) svn path=/trunk/; revision=40952 --- reactos/base/applications/games/winemine/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/games/winemine/main.c b/reactos/base/applications/games/winemine/main.c index 0f200866c5c..313e6c3d1b1 100644 --- a/reactos/base/applications/games/winemine/main.c +++ b/reactos/base/applications/games/winemine/main.c @@ -51,7 +51,7 @@ int WINAPI _tWinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPTSTR cmdline, int wc.hInstance = hInst; wc.hIcon = LoadIcon( hInst, MAKEINTRESOURCE(IDI_WINEMINE) ); wc.hCursor = LoadCursor( NULL, (LPCTSTR)IDI_APPLICATION ); - wc.hbrBackground = (HBRUSH) GetStockObject( LTGRAY_BRUSH ); + wc.hbrBackground = GetSysColorBrush(COLOR_BTNFACE); wc.lpszMenuName = MAKEINTRESOURCE(IDM_WINEMINE); wc.lpszClassName = szAppName;