From 7cfaf4aca080e3db4992e26004f26492a07f5f84 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Mon, 13 Oct 2008 01:53:46 +0200 Subject: [PATCH] d3d9/tests: Fix test for old gfx-card. --- dlls/d3d9/tests/stateblock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/d3d9/tests/stateblock.c b/dlls/d3d9/tests/stateblock.c index ee5061f83c2..e5d7ab24b66 100644 --- a/dlls/d3d9/tests/stateblock.c +++ b/dlls/d3d9/tests/stateblock.c @@ -62,7 +62,8 @@ static HRESULT init_d3d9( hres = IDirect3D9_CreateDevice(d3d9_ptr, D3DADAPTER_DEFAULT, D3DDEVTYPE_NULLREF, window, 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; }