]> git.mxchange.org Git - flightgear.git/commitdiff
Remove some left over debugging output.
authorcurt <curt>
Thu, 29 Dec 2005 16:50:03 +0000 (16:50 +0000)
committercurt <curt>
Thu, 29 Dec 2005 16:50:03 +0000 (16:50 +0000)
src/Instrumentation/navradio.cxx

index 628e4b8308e41f7c59a8bf9f05f57c02f7d93734..0a32ec97cdf330545e5e6531f754f750e13c09ad 100644 (file)
@@ -572,10 +572,10 @@ FGNavRadio::update(double dt)
             }
             SGPropertyNode *true_hdg
                 = fgGetNode("/orientation/heading-deg", true);
-            cout << "true heading = " << true_hdg->getDoubleValue()
-                 << " selrad = " << sel_radial_node->getDoubleValue()
-                 << " artr = " << a
-                 << endl;
+            // cout << "true heading = " << true_hdg->getDoubleValue()
+            //      << " selrad = " << sel_radial_node->getDoubleValue()
+            //      << " artr = " << a
+            //      << endl;
             double est_hdg = trtrue + a;
             if ( est_hdg < 0.0 ) { est_hdg += 360.0; }
             if ( est_hdg >= 360.0 ) { est_hdg -= 360.0; }