]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATCDCL/approach.cxx
Merge branch 'jt/runway' into next
[flightgear.git] / src / ATCDCL / approach.cxx
index c935cbc2903045ee537c534b1a835c7a340f45b5..6e75de47cd28c0b70beac0c901ccd8f974f5a00f 100644 (file)
@@ -563,13 +563,13 @@ void FGApproach::get_active_runway() {
 
   const FGAirport* apt = fgFindAirportID(ident);
   assert(apt);
-  FGRunway runway = apt->getActiveRunwayForUsage();
+  FGRunway* runway = apt->getActiveRunwayForUsage();
 
-  active_runway = runway._rwy_no;
-  active_rw_hdg = runway._heading;
-  active_rw_lon = runway._lon;
-  active_rw_lat = runway._lat;
-  active_rw_len = runway._length;
+  active_runway = runway->ident();
+  active_rw_hdg = runway->headingDeg();
+  active_rw_lon = runway->longitude();
+  active_rw_lat = runway->latitude();
+  active_rw_len = runway->lengthFt();
 }
 
 // ========================================================================