From d4f56af242fe3c16cf54953ef1480f02beb73127 Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 29 Dec 2005 16:50:03 +0000 Subject: [PATCH] Remove some left over debugging output. --- src/Instrumentation/navradio.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Instrumentation/navradio.cxx b/src/Instrumentation/navradio.cxx index 628e4b830..0a32ec97c 100644 --- a/src/Instrumentation/navradio.cxx +++ b/src/Instrumentation/navradio.cxx @@ -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; } -- 2.39.5