Commit 6b4bec8a authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msvfw32: IDC_ARROW is already an int resource (PVS-Studio).

parent 1860efaa
......@@ -86,7 +86,7 @@ BOOL VFWAPIV MCIWndRegisterClass(void)
wc.cbWndExtra = sizeof(MCIWndInfo*);
wc.hInstance = MSVFW32_hModule;
wc.hIcon = 0;
wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
wc.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wc.lpszMenuName = NULL;
wc.lpszClassName = mciWndClassW;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment