d3dx9/tests: Fix messed up parameters.

This commit is contained in:
Józef Kucia 2012-05-17 16:51:23 +02:00 committed by Alexandre Julliard
parent 5ab8c2fdf8
commit 091a4269ef
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ static void test_D3DXCreateTexture(IDirect3DDevice9 *device)
IDirect3DDevice9_GetDeviceCaps(device, &caps);
hr = D3DXCreateTexture(NULL, 0, 0, 0, 0, D3DX_DEFAULT, 0, D3DPOOL_DEFAULT);
hr = D3DXCreateTexture(NULL, 0, 0, 0, 0, D3DX_DEFAULT, D3DPOOL_DEFAULT, NULL);
ok(hr == D3DERR_INVALIDCALL, "D3DXCreateTexture returned %#x, expected %#x\n", hr, D3DERR_INVALIDCALL);
/* width and height tests */