1
0

Noise3d Generator: Fixed unused function error.

This commit is contained in:
Mattes D 2014-11-09 15:33:01 +01:00
parent c43391fd8c
commit 5993c06bd7

View File

@ -83,7 +83,7 @@ inline static NOISE_DATATYPE ClampedLerp(NOISE_DATATYPE a_Val1, NOISE_DATATYPE a
{
return a_Val2;
}
return a_Val1 + (a_Val2 - a_Val1) * a_Ratio;
return Lerp(a_Val1, a_Val2, a_Ratio);
}