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,
if (rc==DSERR_NODRIVER) {
trace(" No Driver\n");
return;
} else if (rc==DSERR_ALLOCATED) {
}
if (rc==DSERR_ALLOCATED) {
trace(" Already In Use\n");
return;
}
if (rc==E_FAIL) {
trace(" Could not initialize DirectSound.\n");
return;
}
}
/* 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