Commit 7cfaf4ac authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

d3d9/tests: Fix test for old gfx-card.

parent c27b37a7
...@@ -62,7 +62,8 @@ static HRESULT init_d3d9( ...@@ -62,7 +62,8 @@ static HRESULT init_d3d9(
hres = IDirect3D9_CreateDevice(d3d9_ptr, D3DADAPTER_DEFAULT, D3DDEVTYPE_NULLREF, window, hres = IDirect3D9_CreateDevice(d3d9_ptr, D3DADAPTER_DEFAULT, D3DDEVTYPE_NULLREF, window,
D3DCREATE_SOFTWARE_VERTEXPROCESSING, device_pparams, device); D3DCREATE_SOFTWARE_VERTEXPROCESSING, device_pparams, device);
ok(hres == D3D_OK, "IDirect3D_CreateDevice returned: 0x%x\n", hres); ok(hres == D3D_OK || hres == D3DERR_NOTAVAILABLE,
"IDirect3D_CreateDevice returned: 0x%x\n", hres);
return hres; return hres;
} }
......
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