From cc3af24375b1e2eeb9738c25f56e8116ef9230bc Mon Sep 17 00:00:00 2001 From: "John K. Hohm" Date: Thu, 19 Aug 2004 18:54:41 +0000 Subject: [PATCH] Consistently suggest proper Emulation rather than Emulated for HardwareAcceleration in [dsound] section of config file. --- dlls/winmm/wineoss/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winmm/wineoss/audio.c b/dlls/winmm/wineoss/audio.c index 55d3f55989..92dd017f55 100644 --- a/dlls/winmm/wineoss/audio.c +++ b/dlls/winmm/wineoss/audio.c @@ -2675,7 +2675,7 @@ 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("set \"HardwareAcceleration\" = \"Emulated\" in the [dsound] section of your config file\n"); + ERR("Use: \"HardwareAcceleration\" = \"Emulation\" in the [dsound] section of your config file.\n"); return DSERR_GENERIC; } TRACE("The sound device has been mapped for direct access at %p, size=%ld\n", dsdb->mapping, dsdb->maplen);