d3dx8/tests: Make compare_vec3() static.

oldstable
Francois Gouget 2009-05-13 10:35:56 +02:00 committed by Alexandre Julliard
parent 0c2430ce3d
commit 46ec91210c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static BOOL compare(FLOAT u, FLOAT v)
return (fabs(u-v) < admitted_error);
}
BOOL compare_vec3(D3DXVECTOR3 u, D3DXVECTOR3 v)
static BOOL compare_vec3(D3DXVECTOR3 u, D3DXVECTOR3 v)
{
return ( compare(u.x, v.x) && compare(u.y, v.y) && compare(u.z, v.z) );
}