]> git.mxchange.org Git - simgear.git/commitdiff
Frederic Bouvier:
authorehofman <ehofman>
Sat, 20 Mar 2004 22:41:40 +0000 (22:41 +0000)
committerehofman <ehofman>
Sat, 20 Mar 2004 22:41:40 +0000 (22:41 +0000)
The message 'Alert: catching up on tile delete queue'
comes from the fact that 48 tiles are scheduled and
added to the cache at startup before the plane location
is initialized. My proposed patch is to initialize
SGLocation with an invalid position and detect this
fact before scheduling tiles. I prefer to do that
rather than testing for lon and lat being 0,0 because
it is a valid position and someone could want to fly
near Accra.

simgear/scene/model/location.cxx

index 8c8e9f982c6526b13c2b67e966b33016532708e8..db6d7b2e58485f3fd0624cc08dc76e72673d71d3 100644 (file)
@@ -104,7 +104,7 @@ static void MakeTRANS( sgMat4 dst, const double Theta,
 // Constructor
 SGLocation::SGLocation( void ):
     _dirty(true),
-    _lon_deg(0),
+    _lon_deg(-1000),
     _lat_deg(0),
     _alt_ft(0),
     _roll_deg(0),