Replace registry editing instructions with winecfg.

This commit is contained in:
Vitaliy Margolen 2005-10-03 10:16:32 +00:00 committed by Alexandre Julliard
parent f653a09d33
commit f09eb790c9
2 changed files with 6 additions and 5 deletions

View File

@ -509,10 +509,11 @@ DWORD OSS_OpenDevice(OSS_DEVICE* ossdev, unsigned req_access,
return WAVERR_BADFORMAT;
}
/* check if the fragment sizes are the same */
if (ossdev->audio_fragment != (frag ? *frag : 0) ) {
if (ossdev->audio_fragment != (frag ? *frag : 0) )
{
ERR("FullDuplex: Playback and Capture hardware acceleration levels are different.\n"
"Create string value : \"HardwareAcceleration\" = \"Emulation\" in the registry\n"
"under [HKEY_CURRENT_USER\\Software\\Wine\\DirectSound].\n");
"Please run winecfg, open \"Audio\" page and set\n"
"\"Hardware Acceleration\" to \"Emulation\".\n");
return WAVERR_BADFORMAT;
}
if (GetCurrentThreadId() != ossdev->owner_tid)

View File

@ -345,8 +345,8 @@ static HRESULT DSDB_MapBuffer(IDsDriverBufferImpl *dsdb)
dsdb->fd, 0);
if (dsdb->mapping == (LPBYTE)-1) {
ERR("Could not map sound device for direct access (%s)\n", strerror(errno));
ERR("Create string value : \"HardwareAcceleration\" = \"Emulation\" in the registry\n"
"under [HKEY_CURRENT_USER\\Software\\Wine\\DirectSound].\n");
ERR("Please run winecfg, open \"Audio\" page and set\n"
"\"Hardware Acceleration\" to \"Emulation\".\n");
return DSERR_GENERIC;
}
TRACE("The sound device has been mapped for direct access at %p, size=%ld\n", dsdb->mapping, dsdb->maplen);