Commit ef4dfd4b authored by Alexandre Julliard's avatar Alexandre Julliard

user: Fixed copy/paste bug in CURSORICON_GetResIconEntry.

parent 72caaad6
......@@ -540,7 +540,7 @@ static BOOL CURSORICON_GetResIconEntry( LPVOID dir, int n,
return FALSE;
icon = &resdir->idEntries[n].ResInfo.icon;
*width = icon->bWidth;
*height = icon->bWidth;
*height = icon->bHeight;
*bits = resdir->idEntries[n].wBitCount;
return TRUE;
}
......
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