why has this been changed? is it just a bug or has this been done on purpose?
Code: Select all
float CGround::GetHeight(float x, float y)
{
float r = GetHeight2(x, y);
if(r<0)
r=0;
return r;
}
e.g. GetElevation(..) could call GetHeight2(..) instead of GetHeight..
