From: jmt Date: Thu, 11 Jun 2009 22:54:51 +0000 (+0000) Subject: Whoops, type codes for localizers and ILSs were swapped in the nav.dat reader X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=21a85221608c54ccdf62985d3aa3ed4d43d7d1b9;p=flightgear.git Whoops, type codes for localizers and ILSs were swapped in the nav.dat reader --- 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;