- Create a solid black brush for background color of a ConsoleWindowClass.

svn path=/trunk/; revision=42202
This commit is contained in:
Aleksey Bragin 2009-07-25 10:24:41 +00:00
parent d86c7f9de6
commit 21777b7cab

View file

@ -1998,7 +1998,7 @@ GuiInit(VOID)
wc.hInstance = (HINSTANCE) GetModuleHandleW(NULL);
wc.hIcon = LoadIconW(GetModuleHandleW(L"win32csr"), MAKEINTRESOURCEW(1));
wc.hCursor = LoadCursorW(NULL, (LPCWSTR) IDC_ARROW);
wc.hbrBackground = NULL;
wc.hbrBackground = CreateSolidBrush(RGB(0,0,0));
wc.lpszMenuName = NULL;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;