dsound: Silence the IDirectSoundBuffer_Initialize warnings.
This commit is contained in:
parent
a335f68bfb
commit
34893a914b
|
@ -793,9 +793,7 @@ static HRESULT WINAPI IDirectSoundBufferImpl_Initialize(
|
|||
LPDIRECTSOUNDBUFFER8 iface,LPDIRECTSOUND dsound,LPCDSBUFFERDESC dbsd
|
||||
) {
|
||||
IDirectSoundBufferImpl *This = (IDirectSoundBufferImpl *)iface;
|
||||
FIXME("(%p,%p,%p):stub\n",This,dsound,dbsd);
|
||||
DPRINTF("Re-Init!!!\n");
|
||||
WARN("already initialized\n");
|
||||
WARN("(%p) already initialized\n", This);
|
||||
return DSERR_ALREADYINITIALIZED;
|
||||
}
|
||||
|
||||
|
|
|
@ -952,9 +952,7 @@ static HRESULT WINAPI PrimaryBufferImpl_Initialize(
|
|||
LPDIRECTSOUNDBUFFER iface,LPDIRECTSOUND dsound,LPCDSBUFFERDESC dbsd
|
||||
) {
|
||||
PrimaryBufferImpl *This = (PrimaryBufferImpl *)iface;
|
||||
FIXME("(%p,%p,%p):stub\n",This,dsound,dbsd);
|
||||
DPRINTF("Re-Init!!!\n");
|
||||
WARN("already initialized\n");
|
||||
WARN("(%p) already initialized\n", This);
|
||||
return DSERR_ALREADYINITIALIZED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue