Commit e4fea46b authored by Jakob Eriksson's avatar Jakob Eriksson Committed by Alexandre Julliard

Test fix.

parent 1e599e7f
...@@ -109,10 +109,15 @@ static void IDirectSound8_test(LPDIRECTSOUND8 dso, BOOL initialized, ...@@ -109,10 +109,15 @@ static void IDirectSound8_test(LPDIRECTSOUND8 dso, BOOL initialized,
if (rc==DSERR_NODRIVER) { if (rc==DSERR_NODRIVER) {
trace(" No Driver\n"); trace(" No Driver\n");
return; return;
} else if (rc==DSERR_ALLOCATED) { }
if (rc==DSERR_ALLOCATED) {
trace(" Already In Use\n"); trace(" Already In Use\n");
return; return;
} }
if (rc==E_FAIL) {
trace(" Could not initialize DirectSound.\n");
return;
}
} }
/* DSOUND: Error: Invalid caps buffer */ /* DSOUND: Error: Invalid caps buffer */
......
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