Module: wine Branch: refs/heads/master Commit: 727ed6eae66795f12b8bd2e188fab7180a025b7c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=727ed6eae66795f12b8bd2e1...
Author: Roderick Colenbrander thunderbird2k@gmx.net Date: Wed Jul 26 21:42:16 2006 +0200
dinput8: Better DirectInput8Create warning.
---
dlls/dinput8/dinput8_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dinput8/dinput8_main.c b/dlls/dinput8/dinput8_main.c index 95aa919..f06e2a4 100644 --- a/dlls/dinput8/dinput8_main.c +++ b/dlls/dinput8/dinput8_main.c @@ -66,7 +66,7 @@ HRESULT WINAPI DirectInput8Create(HINSTA
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; }