dsound: Fix test for some windows versions.
This commit is contained in:
parent
4430518d15
commit
eac4791741
|
@ -783,7 +783,7 @@ static HRESULT test_secondary8(LPGUID lpGuid)
|
|||
|
||||
wfxe.Format.cbSize = sizeof(wfxe);
|
||||
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
||||
ok((rc==DSERR_CONTROLUNAVAIL || rc==DSERR_INVALIDCALL) && !secondary,
|
||||
ok((rc==DSERR_CONTROLUNAVAIL || rc==DSERR_INVALIDCALL || rc==E_INVALIDARG) && !secondary,
|
||||
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
||||
rc, secondary);
|
||||
if (secondary)
|
||||
|
|
Loading…
Reference in New Issue