From 21a85221608c54ccdf62985d3aa3ed4d43d7d1b9 Mon Sep 17 00:00:00 2001 From: jmt Date: Thu, 11 Jun 2009 22:54:51 +0000 Subject: [PATCH] Whoops, type codes for localizers and ILSs were swapped in the nav.dat reader --- 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 add542987..f7c0cd8e1 100644 --- a/src/Navaids/navdb.cxx +++ b/src/Navaids/navdb.cxx @@ -51,8 +51,8 @@ mapRobinTypeToFGPType(int aTy) // case 1: case 2: return FGPositioned::NDB; case 3: return FGPositioned::VOR; - case 4: return FGPositioned::LOC; - case 5: return FGPositioned::ILS; + case 4: return FGPositioned::ILS; + case 5: return FGPositioned::LOC; case 6: return FGPositioned::GS; case 12: case 13: return FGPositioned::DME;