d3dx9/tests: Use ARRAY_SIZE in test_D3DXSHEvalSphericalLight().

Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Henri Verbeet 2017-05-23 11:04:29 +02:00 committed by Alexandre Julliard
parent 12c8400631
commit c940057171
1 changed files with 1 additions and 1 deletions

View File

@ -3160,7 +3160,7 @@ static void test_D3DXSHEvalSphericalLight(void)
dir.x = 1.1f; dir.y = 1.2f; dir.z = 2.76f;
for (l = 0; l < sizeof(test) / sizeof(test[0]); l++)
for (l = 0; l < ARRAY_SIZE(test); ++l)
{
for (order = D3DXSH_MINORDER; order <= D3DXSH_MAXORDER; order++)
{