Don't set a small icon when creating the Xenia window.

This commit is contained in:
gibbed 2017-11-29 23:15:12 -06:00
parent 5702814212
commit 78565e94d6
1 changed files with 1 additions and 1 deletions

View File

@ -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;