From: mfranz Date: Sat, 1 Jul 2006 16:00:27 +0000 (+0000) Subject: make clear that "Failed to find runway ..." doesn't have fatal consequences X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8de07e024ebd2eadd5edc44851e43fa382e0d4e5;p=flightgear.git make clear that "Failed to find runway ..." doesn't have fatal consequences --- diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index 338e3962d..ed50f01b7 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -778,7 +778,7 @@ static bool fgSetPosFromAirportIDandRwy( const string& id, const string& rwy, bo if ( ! globals->get_runways()->search( id, rwy, &r ) ) { SG_LOG( SG_GENERAL, rwy_req ? SG_ALERT : SG_INFO, "Failed to find runway " << rwy << - " at airport " << id ); + " at airport " << id << ". Using default runway." ); return false; } } else {