Commit f73e0f05 authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

d3dx9/tests: Avoid using FP_NAN for portability.

parent 17581418
......@@ -4809,7 +4809,7 @@ static void test_create_skin_info(void)
exp_vertices[0] = 0;
exp_vertices[1] = 0x87654321;
exp_weights[0] = 0.5;
exp_weights[1] = FP_NAN;
exp_weights[1] = 0.0f / 0.0f;
num_influences = 2;
hr = skininfo->lpVtbl->SetBoneInfluence(skininfo, 1, num_influences, vertices, weights);
......
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