Added a more truthful message about what really is wrong.
This commit is contained in:
parent
268b5555ac
commit
d8dea427c1
|
@ -1769,6 +1769,13 @@ static HRESULT WINAPI IDirectSoundBufferImpl_QueryInterface(
|
|||
|
||||
return S_OK;
|
||||
}
|
||||
#else
|
||||
if ( IsEqualGUID( &IID_IDirectSound3DBuffer, riid ) ) {
|
||||
FIXME("%s: I know about this GUID, but don't support it yet\n",
|
||||
debugstr_guid( riid ));
|
||||
*ppobj = NULL;
|
||||
return E_FAIL;
|
||||
}
|
||||
#endif
|
||||
|
||||
if ( IsEqualGUID( &IID_IDirectSound3DListener, riid ) ) {
|
||||
|
|
Loading…
Reference in New Issue