Christoph Korn/PlayDeb.net: fix typos
This commit is contained in:
parent
c864b396c6
commit
a3e76909ee
5 changed files with 6 additions and 6 deletions
|
@ -83,7 +83,7 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
|
||||||
pushBackWaypoint(wpt);
|
pushBackWaypoint(wpt);
|
||||||
}
|
}
|
||||||
//cerr << "Success : GateId = " << gateId << endl;
|
//cerr << "Success : GateId = " << gateId << endl;
|
||||||
SG_LOG(SG_AI, SG_WARN, "Warning: Succesfully found a parking for a " <<
|
SG_LOG(SG_AI, SG_WARN, "Warning: Successfully found a parking for a " <<
|
||||||
aircraftType <<
|
aircraftType <<
|
||||||
" of flight type " << fltType <<
|
" of flight type " << fltType <<
|
||||||
" of airline " << airline <<
|
" of airline " << airline <<
|
||||||
|
|
|
@ -78,7 +78,7 @@ public:
|
||||||
{ return _isReciprocal; }
|
{ return _isReciprocal; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the runway begining point - this is syntatic sugar, equivalent to
|
* Get the runway beginning point - this is syntatic sugar, equivalent to
|
||||||
* calling pointOnCenterline(0.0);
|
* calling pointOnCenterline(0.0);
|
||||||
*/
|
*/
|
||||||
SGGeod begin() const;
|
SGGeod begin() const;
|
||||||
|
|
|
@ -673,7 +673,7 @@ void GPS::referenceNavaidSet(const std::string& aNavaid)
|
||||||
|
|
||||||
if (_ref_navaid) {
|
if (_ref_navaid) {
|
||||||
_ref_navaid_set = true;
|
_ref_navaid_set = true;
|
||||||
SG_LOG(SG_INSTR, SG_INFO, "GPS code set explict ref-navaid:" << _ref_navaid->ident());
|
SG_LOG(SG_INSTR, SG_INFO, "GPS code set explicit ref-navaid:" << _ref_navaid->ident());
|
||||||
_ref_navaid_id_node->setStringValue(_ref_navaid->ident().c_str());
|
_ref_navaid_id_node->setStringValue(_ref_navaid->ident().c_str());
|
||||||
_ref_navaid_name_node->setStringValue(_ref_navaid->name().c_str());
|
_ref_navaid_name_node->setStringValue(_ref_navaid->name().c_str());
|
||||||
FGNavRecord* vor = (FGNavRecord*) _ref_navaid.ptr();
|
FGNavRecord* vor = (FGNavRecord*) _ref_navaid.ptr();
|
||||||
|
@ -855,7 +855,7 @@ void GPS::beginTurn()
|
||||||
{
|
{
|
||||||
_inTurn = true;
|
_inTurn = true;
|
||||||
_turnSequenced = false;
|
_turnSequenced = false;
|
||||||
SG_LOG(SG_INSTR, SG_INFO, "begining turn");
|
SG_LOG(SG_INSTR, SG_INFO, "beginning turn");
|
||||||
}
|
}
|
||||||
|
|
||||||
void GPS::endTurn()
|
void GPS::endTurn()
|
||||||
|
|
|
@ -638,7 +638,7 @@ float FGElectricalSystem::propagate( FGElectricalComponent *node, double dt,
|
||||||
}
|
}
|
||||||
// cout << s << " input_volts = " << volts << endl;
|
// cout << s << " input_volts = " << volts << endl;
|
||||||
} else {
|
} else {
|
||||||
SG_LOG( SG_SYSTEMS, SG_ALERT, "unkown node type" );
|
SG_LOG( SG_SYSTEMS, SG_ALERT, "unknown node type" );
|
||||||
}
|
}
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -145,7 +145,7 @@ int main(int argc, char **argv)
|
||||||
if ((error = alGetError()) != AL_NO_ERROR)
|
if ((error = alGetError()) != AL_NO_ERROR)
|
||||||
printf("Error #%x: %s\n", error, alGetString(error));
|
printf("Error #%x: %s\n", error, alGetString(error));
|
||||||
else if (!s)
|
else if (!s)
|
||||||
printf("Quering AL_VERSION returned NULL pointer!\n");
|
printf("Querying AL_VERSION returned NULL pointer!\n");
|
||||||
else
|
else
|
||||||
printf("OpenAL version string: %s\n", s);
|
printf("OpenAL version string: %s\n", s);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue