Commit 80b73ffc authored by Nozomi Kodama's avatar Nozomi Kodama Committed by Alexandre Julliard

d3dx9_36: Remove useless casts.

parent ca918253
......@@ -2431,8 +2431,8 @@ static void test_D3DXSHDot(void)
for (i = 0; i < 49; i++)
{
a[i] = (FLOAT)i + 1.0f;
b[i] = (FLOAT)i + 0.5f;
a[i] = i + 1.0f;
b[i] = i + 0.5f;
}
/* D3DXSHDot computes by using order * order elements */
......
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