From c9aca501e481bdafe35e6270e86f3a4f600e4de1 Mon Sep 17 00:00:00 2001 From: Oleg Dubinskiy Date: Mon, 1 Jul 2024 18:34:01 +0200 Subject: [PATCH] [WINMINE] Remove unneeded cast Remove unneeded cast when loading the cusror for the WineMine's main window class. Addendum to 1a10250. --- base/applications/games/winmine/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/applications/games/winmine/main.c b/base/applications/games/winmine/main.c index 61ad8c76b7a..7a6f5f3a15c 100644 --- a/base/applications/games/winmine/main.c +++ b/base/applications/games/winmine/main.c @@ -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);