Commit 9ccbb303 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3dx9/tests: Use ARRAY_SIZE in test_D3DXSHDot().

parent 38587126
......@@ -2591,7 +2591,7 @@ static void test_D3DXSHDot(void)
static const float expected[] = {0.5f, 0.5f, 25.0f, 262.5f, 1428.0f, 5362.5f, 15873.0f, 39812.5f};
for (i = 0; i < 49; i++)
for (i = 0; i < ARRAY_SIZE(a); ++i)
{
a[i] = i + 1.0f;
b[i] = i + 0.5f;
......
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