From c486dc0589d6a5433964d77d634d7dd6f8edfca2 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 10 Mar 2006 03:46:50 +0000 Subject: [PATCH] Recognize standalone DMEs (type 13 in Robin's list). --- src/Navaids/navdb.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Navaids/navdb.cxx b/src/Navaids/navdb.cxx index 0504f1480..07e872800 100644 --- a/src/Navaids/navdb.cxx +++ b/src/Navaids/navdb.cxx @@ -122,8 +122,8 @@ 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 ); -- 2.39.5