]> git.mxchange.org Git - simgear.git/commitdiff
Compile under MSVC
authorFrederic Bouvier <fredfgfs01@free.fr>
Tue, 26 Apr 2011 17:45:40 +0000 (19:45 +0200)
committerFrederic Bouvier <fredfgfs01@free.fr>
Tue, 26 Apr 2011 17:45:40 +0000 (19:45 +0200)
simgear/scene/sky/cloudfield.cxx
simgear/scene/sky/cloudfield.hxx

index 2973e92e88dd30f1598fc2da08825483381108c0..fdde4adbddfa0aeab0c3d32e0b8c352b7d86911f 100644 (file)
@@ -68,6 +68,8 @@ float SGCloudField::fieldSize = 50000.0f;
 double SGCloudField::timer_dt = 0.0;
 float SGCloudField::view_distance = 20000.0f;
 bool SGCloudField::wrap = true;
+float SGCloudField::RADIUS_LEVEL_1 = 20000.0f;
+float SGCloudField::RADIUS_LEVEL_2 = 5000.0f;
 
 SGVec3f SGCloudField::view_vec, SGCloudField::view_X, SGCloudField::view_Y;
 
index 5b7bb6f7195c05e5f7812c87c7f54728c213c75a..ae7ce12a2cc0a68d9dd17e85f1d8b6e3222523ff 100644 (file)
@@ -73,8 +73,8 @@ private:
         float Rnd(float);
         
   // Radius of the LoD nodes for the dynamic quadtrees.
-  static const float RADIUS_LEVEL_1 = 20000.0f;
-  static const float RADIUS_LEVEL_2 = 5000.0f;
+  static float RADIUS_LEVEL_1;
+  static float RADIUS_LEVEL_2;
 
        // this is a relative position only, with that we can move all clouds at once
        SGVec3f relative_position;