Make a function static.

This commit is contained in:
riccardom 2009-02-04 19:38:23 +00:00
parent e67704d5b7
commit 7911585bdc
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ struct Interpolator
FORCEINLINE void incx(int count) { Z += dx*count; }
};
void alphaBlend(Fragment & dst, const Fragment & src)
static void alphaBlend(Fragment & dst, const Fragment & src)
{
if(gfx3d.enableAlphaBlending)
{