]> git.mxchange.org Git - flightgear.git/blobdiff - src/Cockpit/hud_tbi.cxx
Merge branch 'aperry/terrasync'
[flightgear.git] / src / Cockpit / hud_tbi.cxx
index a602bcdb139ae18a8d3f791b0682fb693fd9d635..c5fd670c62bc431159d0f33dfe4646b700b225dd 100644 (file)
@@ -23,7 +23,7 @@ fgTBI_instr::fgTBI_instr(const SGPropertyNode *node) :
             node->getIntValue("height"),
             get_roll,                                  // FIXME
             get_sideslip,
-            node->getBoolValue("working"),
+            node->getBoolValue("working", true),
             HUDS_TOP),
     BankLimit(int(node->getFloatValue("maxBankAngle"))),
     SlewLimit(int(node->getFloatValue("maxSlipAngle"))),
@@ -32,8 +32,8 @@ fgTBI_instr::fgTBI_instr(const SGPropertyNode *node) :
     rad(node->getFloatValue("rad"))
 
 {
-    SG_LOG(SG_INPUT, SG_INFO, "Done reading TBI instrument"
-            << node->getStringValue("name", "[NONE]"));
+    SG_LOG(SG_INPUT, SG_BULK, "Done reading TBI instrument"
+            << node->getStringValue("name", "[unnamed]"));
 }