]> git.mxchange.org Git - flightgear.git/commitdiff
Fixes for MSVC and MipsPro
authorehofman <ehofman>
Fri, 18 Jul 2003 08:14:21 +0000 (08:14 +0000)
committerehofman <ehofman>
Fri, 18 Jul 2003 08:14:21 +0000 (08:14 +0000)
src/Replay/replay.cxx
src/Replay/replay.hxx

index d0dc3f6fa3880697d90301588b184a4e8f5b7583..9b8a4476089d3200e08450f2d37752e5e3e55cac 100644 (file)
 
 #include "replay.hxx"
 
+const double FGReplay::st_list_time = 60.0;   // 60 secs of high res data
+const double FGReplay::mt_list_time = 600.0;  // 10 mins of 1 fps data
+const double FGReplay::lt_list_time = 3600.0; // 1 hr of 10 spf data
+
+// short term sample rate is as every frame
+const double FGReplay::mt_dt = 0.5; // medium term sample rate (sec)
+const double FGReplay::lt_dt = 5.0; // long term sample rate (sec)
 
 /**
  * Constructor
index f9ab649a2cffcc72d7e062e406d8edb74ab060f7..41f1a4a62d279670bacd1a010590b6f5a43f9be4 100644 (file)
@@ -79,13 +79,13 @@ public:
     
 private:
 
-    static const double st_list_time = 60.0;   // 60 secs of high res data
-    static const double mt_list_time = 600.0;  // 10 mins of 1 fps data
-    static const double lt_list_time = 3600.0; // 1 hr of 10 spf data
+    static const double st_list_time;   // 60 secs of high res data
+    static const double mt_list_time;  // 10 mins of 1 fps data
+    static const double lt_list_time; // 1 hr of 10 spf data
 
     // short term sample rate is as every frame
-    static const double mt_dt = 0.5; // medium term sample rate (sec)
-    static const double lt_dt = 5.0; // long term sample rate (sec)
+    static const double mt_dt; // medium term sample rate (sec)
+    static const double lt_dt; // long term sample rate (sec)
 
     double sim_time;
     double last_mt_time;