]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/navdb.cxx
make attribute strings lowercase with hyphen instead of underscore;
[flightgear.git] / src / Navaids / navdb.cxx
index 0504f148040d01fdbef168341d2b1426fb07bad4..d5e8005dff089cf73f714f9361228a3a73ae371d 100644 (file)
@@ -122,11 +122,11 @@ bool fgNavDBInit( FGAirportList *airports,
         {
             // Marker Beacon = 7,8,9
             mkrlist->add( r );
-        } else if ( r->get_type() == 12 ) {
-            // DME=12
+        } else if ( r->get_type() == 12 || r->get_type() == 13) {
+            // DME with ILS=12; standalone DME=13
             string str1( r->get_name() );
-            unsigned int loc1= str1.find( "TACAN", 0 );
-            unsigned int loc2 = str1.find( "VORTAC", 0 );
+            string::size_type loc1= str1.find( "TACAN", 0 );
+            string::size_type loc2 = str1.find( "VORTAC", 0 );
                        
             if( loc1 != string::npos || loc2 != string::npos ){
                  //cout << " name = " << r->get_name() ;