d3dx8/tests: Make compare() static.

This commit is contained in:
Francois Gouget 2009-02-05 00:16:37 +01:00 committed by Alexandre Julliard
parent d13fed31fd
commit cb42582287
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
#define admitted_error 0.0001f
BOOL compare(FLOAT u, FLOAT v)
static BOOL compare(FLOAT u, FLOAT v)
{
return (fabs(u-v) < admitted_error);
}