Fix for an uninitialised value, reported by Dave Luff.
This commit is contained in:
parent
9495c2efdf
commit
57d8dca176
1 changed files with 4 additions and 0 deletions
|
@ -281,6 +281,7 @@ GPS::Config::setExternalCourse(double aCourseDeg)
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
GPS::GPS ( SGPropertyNode *node) :
|
GPS::GPS ( SGPropertyNode *node) :
|
||||||
|
_selectedCourse(0.0),
|
||||||
_dataValid(false),
|
_dataValid(false),
|
||||||
_lastPosValid(false),
|
_lastPosValid(false),
|
||||||
_mode("init"),
|
_mode("init"),
|
||||||
|
@ -559,6 +560,9 @@ GPS::update (double delta_time_sec)
|
||||||
if (_dataValid && (_mode == "init")) {
|
if (_dataValid && (_mode == "init")) {
|
||||||
// allow a realistic delay in the future, here
|
// allow a realistic delay in the future, here
|
||||||
SG_LOG(SG_INSTR, SG_INFO, "GPS initialisation complete");
|
SG_LOG(SG_INSTR, SG_INFO, "GPS initialisation complete");
|
||||||
|
|
||||||
|
_selectedCourse = _config.getExternalCourse();
|
||||||
|
|
||||||
if (_route_active_node->getBoolValue()) {
|
if (_route_active_node->getBoolValue()) {
|
||||||
// GPS init with active route
|
// GPS init with active route
|
||||||
SG_LOG(SG_INSTR, SG_INFO, "GPS init with active route");
|
SG_LOG(SG_INSTR, SG_INFO, "GPS init with active route");
|
||||||
|
|
Loading…
Add table
Reference in a new issue