Merge pull request #427 from c64kernal/dev_wincursor

Fixed a bug in the display of the dxViewer cursor
This commit is contained in:
David G Yu 2015-04-18 13:54:24 -07:00
commit 963d952c7b

View File

@ -1472,7 +1472,7 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmd
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = NULL;
wcex.hCursor = NULL;
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = NULL;
wcex.lpszClassName = szWindowClass;