Whoops - a default cursor is kind of important.

This commit is contained in:
Dr. Chat 2016-08-06 18:16:39 -05:00
parent 9b86132fd0
commit 976a317293
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ bool Win32Window::OnCreate() {
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, L"MAINICON");
wcex.hIconSm = LoadIcon(hInstance, L"MAINICON");
wcex.hCursor = nullptr;
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wcex.lpszMenuName = nullptr;
wcex.lpszClassName = L"XeniaWindowClass";