dsound: DPRINTF -> TRACE.

This commit is contained in:
Andrew Riedi 2007-12-11 23:56:13 -08:00 committed by Alexandre Julliard
parent e0740a7a60
commit 68a6ddf623
1 changed files with 2 additions and 2 deletions

View File

@ -1318,7 +1318,7 @@ HRESULT DirectSoundDevice_GetCaps(
if (TRACE_ON(dsound)) {
TRACE("(flags=0x%08x:\n",lpDSCaps->dwFlags);
_dump_DSCAPS(lpDSCaps->dwFlags);
DPRINTF(")\n");
TRACE(")\n");
}
lpDSCaps->dwMinSecondarySampleRate = device->drvcaps.dwMinSecondarySampleRate;
lpDSCaps->dwMaxSecondarySampleRate = device->drvcaps.dwMaxSecondarySampleRate;
@ -1538,7 +1538,7 @@ HRESULT DirectSoundDevice_CreateSoundBuffer(
TRACE("(structsize=%d)\n",dsbd->dwSize);
TRACE("(flags=0x%08x:\n",dsbd->dwFlags);
_dump_DSBCAPS(dsbd->dwFlags);
DPRINTF(")\n");
TRACE(")\n");
TRACE("(bufferbytes=%d)\n",dsbd->dwBufferBytes);
TRACE("(lpwfxFormat=%p)\n",dsbd->lpwfxFormat);
}