diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c index c26ac53292e..97e5cfc0dde 100644 --- a/dlls/shell32/shelllink.c +++ b/dlls/shell32/shelllink.c @@ -1261,7 +1261,12 @@ static HRESULT WINAPI IShellLinkA_fnSetShowCmd(IShellLinkA * iface, INT iShowCmd { ICOM_THIS(IShellLinkImpl, iface); - FIXME("(%p)->(showcmd=%x)\n",This, iShowCmd); + /* SW_SHOWNORMAL is the default ... The others would have + * to be somehow passed through the link file ... We can't + * do that currently. + */ + if (iShowCmd != SW_SHOWNORMAL) + FIXME("(%p)->(showcmd=%x)\n",This, iShowCmd); return NOERROR; } static HRESULT WINAPI IShellLinkA_fnGetIconLocation(IShellLinkA * iface, LPSTR pszIconPath,INT cchIconPath,INT *piIcon)