From: curt Date: Fri, 19 Apr 2002 04:11:32 +0000 (+0000) Subject: Fixed an "==" vs. "=" typo. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=130902f788fae56d92f9f36e59254e2c896009ac;p=flightgear.git Fixed an "==" vs. "=" typo. --- diff --git a/src/GUI/sgVec3Slider.cxx b/src/GUI/sgVec3Slider.cxx index 4c1b469e7..e4a98bcaa 100644 --- a/src/GUI/sgVec3Slider.cxx +++ b/src/GUI/sgVec3Slider.cxx @@ -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);