d3d10core/tests: Fix typo.

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Józef Kucia 2015-11-10 01:40:25 +01:00 committed by Alexandre Julliard
parent 60112f42ad
commit 773e3fc993
1 changed files with 1 additions and 1 deletions

View File

@ -2720,7 +2720,7 @@ float4 main(float4 color : COLOR) : SV_TARGET
for (i = 0; i < D3D10_SO_BUFFER_SLOT_COUNT; ++i)
{
ok(tmp_buffer[i] == so_buffer[i], "Got unexpected stream output %p in slot %u, expected %p.\n",
tmp_buffer[i], i, buffer[i]);
tmp_buffer[i], i, so_buffer[i]);
ID3D10Buffer_Release(tmp_buffer[i]);
todo_wine ok(offset[i] == ~0u, "Got unexpected stream output offset %u in slot %u.\n", offset[i], i);
}