Commit 6a3255bb authored by Austin English's avatar Austin English Committed by Alexandre Julliard

dsound: Return success in IDirectSoundBufferImpl_AcquireResources.

parent 61ba3863
......@@ -791,13 +791,13 @@ static HRESULT WINAPI IDirectSoundBufferImpl_AcquireResources(
IDirectSoundBufferImpl *This = (IDirectSoundBufferImpl *)iface;
DWORD u;
FIXME("(%p,%08u,%u,%p): stub\n",This,dwFlags,dwEffectsCount,pdwResultCodes);
FIXME("(%p,%08u,%u,%p): stub, faking success\n",This,dwFlags,dwEffectsCount,pdwResultCodes);
if (pdwResultCodes)
for (u=0; u<dwEffectsCount; u++) pdwResultCodes[u] = DSFXR_UNKNOWN;
WARN("control unavailable\n");
return DSERR_CONTROLUNAVAIL;
return DS_OK;
}
static HRESULT WINAPI IDirectSoundBufferImpl_GetObjectInPath(
......
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