1
0
Fork 0

Fixed an "==" vs. "=" typo.

This commit is contained in:
curt 2002-04-19 04:11:32 +00:00
parent eea531fbf5
commit 130902f788

View file

@ -576,7 +576,7 @@ void HeadingPitchRadiusFromVec3 ( sgVec3 hpr, sgVec3 vec3 )
hpr[2] = 0;
} else {
if (fabs(y) < 0.001f)
y == 0.001f;
y = 0.001f;
Zx = sqrt(y*y + z*z);