Commit 30392be1 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

wineoss: Silence some harmless warnings.

parent be5105e8
......@@ -2082,10 +2082,8 @@ DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
/* Check that fragsize is correct per our settings above */
if ((info.fragsize > 1024) && (LOWORD(audio_fragment) <= 10)) {
/* we've tried to set 1K fragments or less, but it didn't work */
ERR("fragment size set failed, size is now %d\n", info.fragsize);
MESSAGE("Your Open Sound System driver did not let us configure small enough sound fragments.\n");
MESSAGE("This may cause delays and other problems in audio playback with certain applications.\n");
/* we've tried to set 1K fragments or less, but it didn't work */
WARN("fragment size set failed, size is now %d\n", info.fragsize);
}
/* Remember fragsize and total buffer size for future use */
......
......@@ -940,10 +940,8 @@ DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv)
/* the HAL isn't much better than the HEL if we can't do mmap() */
if (!(WOutDev[wDevID].ossdev->duplex_out_caps.dwSupport & WAVECAPS_DIRECTSOUND)) {
ERR("DirectSound flag not set\n");
MESSAGE("This sound card's driver does not support direct access\n");
MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
return MMSYSERR_NOTSUPPORTED;
WARN("Warn DirectSound flag not set, falling back to HEL layer\n");
return MMSYSERR_NOTSUPPORTED;
}
*idrv = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(IDsDriverImpl));
......
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