From: curt Date: Wed, 13 Feb 2002 18:17:04 +0000 (+0000) Subject: Cleaned up a few stray cout's X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=56db201e5213e9617b760a8e1810243404790d2b;p=flightgear.git Cleaned up a few stray cout's --- diff --git a/src/ATC/atis.cxx b/src/ATC/atis.cxx index c489cb5d6..c8522f1a8 100644 --- a/src/ATC/atis.cxx +++ b/src/ATC/atis.cxx @@ -160,7 +160,7 @@ string FGATIS::get_transmission() { double cloudbase = fgGetDouble("/environment/clouds/altitude-ft"); // For some reason the altitude returned doesn't seem to correspond to the actual cloud altitude. char buf3[10]; - cout << "cloudbase = " << cloudbase << endl; + // cout << "cloudbase = " << cloudbase << endl; sprintf(buf3, "%i", int(cloudbase)); transmission = transmission + " Cloudbase " + buf3 + " feet"; } diff --git a/src/Airports/runways.cxx b/src/Airports/runways.cxx index 448881ed2..75ad21984 100644 --- a/src/Airports/runways.cxx +++ b/src/Airports/runways.cxx @@ -81,7 +81,7 @@ bool FGRunways::search( const string& aptid, FGRunway* r ) { c4_StringProp pEnd2 ("End2Flags"); int index = vRunway->Find(pID[aptid.c_str()]); - cout << "index = " << index << endl; + // cout << "index = " << index << endl; if ( index == -1 ) { return false; @@ -121,7 +121,7 @@ bool FGRunways::search( const string& aptid, const string& rwyno, FGRunway* r ) c4_StringProp pEnd2 ("End2Flags"); int index = vRunway->Find(pID[aptid.c_str()]); - cout << "index = " << index << endl; + // cout << "index = " << index << endl; if ( index == -1 ) { return false;