dinput8: Better DirectInput8Create warning.

This commit is contained in:
Roderick Colenbrander 2006-07-26 21:42:16 +02:00 committed by Alexandre Julliard
parent fddd703b38
commit 727ed6eae6
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ HRESULT WINAPI DirectInput8Create(HINSTANCE hinst, DWORD dwVersion, REFIID riid,
hr = CoCreateInstance( &CLSID_DirectInput8, punkOuter, CLSCTX_INPROC_SERVER, riid, ppDI);
if(FAILED(hr)) {
ERR("CoCreateInstance failed with hr = %ld\n", hr);
ERR("CoCreateInstance failed with hr = %ld; Try running wineprefixcreate to fix it.\n", hr);
return DIERR_INVALIDPARAM;
}