]> git.mxchange.org Git - flightgear.git/commitdiff
View::updateData becomes a private helper.
authorJames Turner <zakalawe@mac.com>
Sun, 24 Jan 2016 19:02:31 +0000 (13:02 -0600)
committerJames Turner <zakalawe@mac.com>
Wed, 17 Feb 2016 21:25:39 +0000 (21:25 +0000)
src/Viewer/viewer.cxx
src/Viewer/viewer.hxx
src/Viewer/viewmgr.cxx

index a2d555a9e728d131d5d0eaef76184b77567abc3f..3679a2636d6de237313a44fb4a1a045fa992bd08 100644 (file)
@@ -849,6 +849,7 @@ View::updateData()
 void
 View::update (double dt)
 {
+    updateData();
   updateDampOutput(dt);
 
   int i;
index f1f1f4726e56bfaea589e68cb851a6f03c34c8f1..a215ac87ed42f756cbf53453cf15113fc28a38f1 100644 (file)
@@ -79,8 +79,7 @@ public:
     //////////////////////////////////////////////////////////////////////
 
     void resetOffsetsAndFOV();
-    void updateData();
-    
+
     ViewType getType() const { return _type; }
     void setType( int type );
 
@@ -200,6 +199,7 @@ private:
          double target_z_offset_m, double near_m, bool internal );
 
     void set_clean() { _dirty = false; }
+    void updateData();
 
     void setHeadingOffset_deg_property (double heading_offset_deg);
     void setPitchOffset_deg_property(double pitch_offset_deg);
index 27226252edcc34655a494f162acc78b84d3beb80..1bc091c8c0fcfa3053087cd5d095bdaefcdc0a5c 100644 (file)
@@ -134,9 +134,6 @@ FGViewMgr::update (double dt)
         return;
     }
 
-  // Set up view location and orientation
-    currentView->updateData();
-
   // Update the current view
   currentView->update(dt);