Don't set a small icon when creating the Xenia window.
This commit is contained in:
parent
5702814212
commit
78565e94d6
|
@ -67,7 +67,7 @@ bool Win32Window::OnCreate() {
|
|||
wcex.cbWndExtra = 0;
|
||||
wcex.hInstance = hInstance;
|
||||
wcex.hIcon = LoadIcon(hInstance, L"MAINICON");
|
||||
wcex.hIconSm = LoadIcon(hInstance, L"MAINICON");
|
||||
wcex.hIconSm = NULL; // LoadIcon(hInstance, L"MAINICON");
|
||||
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
|
||||
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
|
||||
wcex.lpszMenuName = nullptr;
|
||||
|
|
Loading…
Reference in New Issue