d3dx9/tests: Use string concatenation for a multiline string.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2017-07-06 15:23:38 +02:00 committed by Alexandre Julliard
parent e80b6b64ba
commit 041a0ff1c0

View file

@ -4338,8 +4338,8 @@ static void test_effect_preshader_compare_vconsts_(unsigned int line, IDirect3DD
& (1u << (i % TEST_EFFECT_BITMASK_BLOCK_SIZE)))
{
ok_(__FILE__, line)(!memcmp(&fdata[i], &test_effect_preshader_fvect_v[i], sizeof(fdata[i])),
"Vertex shader float constants do not match, expected (%g, %g, %g, %g), \
got (%g, %g, %g, %g), parameter %s.\n",
"Vertex shader float constants do not match, expected (%g, %g, %g, %g), "
"got (%g, %g, %g, %g), parameter %s.\n",
test_effect_preshader_fvect_v[i].x, test_effect_preshader_fvect_v[i].y,
test_effect_preshader_fvect_v[i].z, test_effect_preshader_fvect_v[i].w,
fdata[i].x, fdata[i].y, fdata[i].z, fdata[i].w, updated_param);