Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ade3dd28
Commit
ade3dd28
authored
Jul 03, 2005
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Jul 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change messages about config file to registry.
parent
b8fc783b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
audio.c
dlls/winmm/wineoss/audio.c
+2
-1
dsrender.c
dlls/winmm/wineoss/dsrender.c
+2
-1
No files found.
dlls/winmm/wineoss/audio.c
View file @
ade3dd28
...
...
@@ -511,7 +511,8 @@ DWORD OSS_OpenDevice(OSS_DEVICE* ossdev, unsigned req_access,
/* check if the fragment sizes are the same */
if
(
ossdev
->
audio_fragment
!=
(
frag
?
*
frag
:
0
)
)
{
ERR
(
"FullDuplex: Playback and Capture hardware acceleration levels are different.
\n
"
"Use:
\"
HardwareAcceleration
\"
=
\"
Emulation
\"
in the [dsound] section of your config file.
\n
"
);
"Create string value :
\"
HardwareAcceleration
\"
=
\"
Emulation
\"
in the registry
\n
"
"under [HKEY_CURRENT_USER
\\
Software
\\
Wine
\\
DirectSound].
\n
"
);
return
WAVERR_BADFORMAT
;
}
if
(
GetCurrentThreadId
()
!=
ossdev
->
owner_tid
)
...
...
dlls/winmm/wineoss/dsrender.c
View file @
ade3dd28
...
...
@@ -345,7 +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
(
"Use:
\"
HardwareAcceleration
\"
=
\"
Emulation
\"
in the [dsound] section of your config file.
\n
"
);
ERR
(
"Create string value :
\"
HardwareAcceleration
\"
=
\"
Emulation
\"
in the registry
\n
"
"under [HKEY_CURRENT_USER
\\
Software
\\
Wine
\\
DirectSound].
\n
"
);
return
DSERR_GENERIC
;
}
TRACE
(
"The sound device has been mapped for direct access at %p, size=%ld
\n
"
,
dsdb
->
mapping
,
dsdb
->
maplen
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment