disambiguated a pow() call

This commit is contained in:
Paolo Cignoni 2008-07-15 10:40:10 +00:00
parent c1c51913d3
commit 38323a3c48
1 changed files with 203 additions and 203 deletions

View File

@ -509,7 +509,7 @@ static Color4b ColorPow(Color4b c, float exponent)
static float ValuePow(float value, float exponent)
{
return pow((double)value, exponent);
return powf(value, exponent);
}
static int Colourisation(UpdateMeshType &m, Color4b c, float intensity, const bool ProcessSelected=false)