]> git.mxchange.org Git - flightgear.git/commitdiff
make clear that "Failed to find runway ..." doesn't have fatal consequences
authormfranz <mfranz>
Sat, 1 Jul 2006 16:00:27 +0000 (16:00 +0000)
committermfranz <mfranz>
Sat, 1 Jul 2006 16:00:27 +0000 (16:00 +0000)
src/Main/fg_init.cxx

index 338e3962d60dc3867ae385f3717af9f37b179ad6..ed50f01b7a8943cced4502ef4f3758655aa364b1 100644 (file)
@@ -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 {