mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[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:
parent
1a1025011f
commit
c9aca501e4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue