mirror of
https://github.com/reactos/reactos.git
synced 2026-06-03 01:41:13 +08: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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user