Commit 4603c873 authored by Jeff Zaroyko's avatar Jeff Zaroyko Committed by Alexandre Julliard

winmm: Remove misleading message.

parent 3843d5be
...@@ -898,9 +898,7 @@ static DWORD MCI_LoadMciDriver(LPCWSTR _strDevTyp, LPWINE_MCIDRIVER* lpwmd) ...@@ -898,9 +898,7 @@ static DWORD MCI_LoadMciDriver(LPCWSTR _strDevTyp, LPWINE_MCIDRIVER* lpwmd)
if (strcmpiW(strDevTyp, wszAll) == 0) { if (strcmpiW(strDevTyp, wszAll) == 0) {
dwRet = MCIERR_CANNOT_USE_ALL; dwRet = MCIERR_CANNOT_USE_ALL;
} else { } else {
FIXME("Couldn't load driver for type %s.\n" FIXME("Couldn't load driver for type %s.\n",
"If you don't have a windows installation accessible from Wine,\n"
"you perhaps forgot to create a [mci] section in system.ini\n",
debugstr_w(strDevTyp)); debugstr_w(strDevTyp));
dwRet = MCIERR_DEVICE_NOT_INSTALLED; dwRet = MCIERR_DEVICE_NOT_INSTALLED;
} }
......
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