[WINMINE] Remove unneeded cast

Remove unneeded cast when loading the cusror for the WineMine's main window class.
Addendum to 1a10250.
This commit is contained in:
Oleg Dubinskiy 2024-07-01 18:34:01 +02:00
parent 1a1025011f
commit c9aca501e4

View file

@ -1095,7 +1095,7 @@ int WINAPI wWinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPWSTR cmdline, int c
#ifndef __REACTOS__
wc.hCursor = LoadCursorW( 0, (LPWSTR)IDI_APPLICATION );
#else
wc.hCursor = LoadCursorW(NULL, (LPWSTR)IDC_ARROW);
wc.hCursor = LoadCursorW(NULL, IDC_ARROW);
#endif
wc.hbrBackground = GetSysColorBrush(COLOR_BTNFACE); //MOD for ROS
wc.lpszMenuName = MAKEINTRESOURCEW(IDM_WINEMINE);