]> git.mxchange.org Git - flightgear.git/commitdiff
whoops ... don't let the new HUD turn off 3D mode in the old one :-)
authormfranz <mfranz>
Sat, 15 Jul 2006 18:15:00 +0000 (18:15 +0000)
committermfranz <mfranz>
Sat, 15 Jul 2006 18:15:00 +0000 (18:15 +0000)
src/Instrumentation/HUD/HUD.cxx

index 35562ccea0237de96dbe9e712e0d19421761d49a..8e9143d97e1f69ef9a38f399e09ce11425031765 100644 (file)
@@ -53,7 +53,7 @@ static float clamp(float f)
 HUD::HUD() :
     _current(fgGetNode("/sim/hud/current-color", true)),
     _visibility(fgGetNode("/sim/hud/visibility[1]", true)),
-    _3DenabledN(fgGetNode("/sim/hud/enable3d", true)),
+    _3DenabledN(fgGetNode("/sim/hud/enable3d[1]", true)),
     _antialiasing(fgGetNode("/sim/hud/color/antialiased", true)),
     _transparency(fgGetNode("/sim/hud/color/transparent", true)),
     _red(fgGetNode("/sim/hud/color/red", true)),
@@ -347,7 +347,7 @@ int HUD::load(const char *file, float x, float y, int level, const string& inden
 
         } else if (!strcmp(name, "enable3d")) {
             // set in the tree so that valueChanged() picks it up
-            fgSetBool("/sim/hud/enable3d", n->getBoolValue());
+            _3DenabledN->setBoolValue(n->getBoolValue());
             continue;
 
         } else if (!strcmp(name, "import")) {