// Apt, VOR and SUA drawing can be suspended by setting draw_avs to false, without affecting the stored drawing preference state.
void DrawMap(bool draw_avs = true);
- // Set whether the display should be draw pixelated (more primatives, but might be closer to real-life)
+ // Set whether the display should be drawn pixelated (more primitives, but might be closer to real-life)
// or not (in which case it is assumed that pixels are square and can be merged into quads).
bool _pixelated;
// The currently active page
KLN89Page* _activePage;
- // And a facility to save the immediately preceeding active page
+ // And a facility to save the immediately preceding active page
KLN89Page* _lastActivePage;
// Ugly hack. Housekeeping to allow us to temporarily display one page, while remembering which
}
/**
- * given a current iterator into the values, find the preceeding group marker,
+ * given a current iterator into the values, find the preceding group marker,
* or return the beginning of the value vector.
*/
OptionValueVec::const_iterator rfindGroup(OptionValueVec::const_iterator pos) const
}
if (index == 0) {
- SG_LOG(SG_NAVAID, SG_WARN, "findPreceedingKnownAltitude: no preceeding altitude value found");
+ SG_LOG(SG_NAVAID, SG_WARN, "findPreceedingKnownAltitude: no preceding altitude value found");
return -1;
}
{
std::vector<std::string> lines;
std::multimap<int, Airport> aptData;
- SG_LOG(SG_GENERAL, SG_INFO, "Loading aiports informations...");
+ SG_LOG(SG_GENERAL, SG_INFO, "Loading airports information...");
for(size_t i=0; i < sizeof(_positionsData)/sizeof(*_positionsData); i++) { // _positionsData is provided by positions.hxx
std::vector<std::string> entries = simgear::strutils::split(_positionsData[i], ",");
std::cout << " --version - Show version" << std::endl;
std::cout << "" << std::endl;
std::cout << " None of these options are required, you can simply start FGCom without option at all: it works" << std::endl;
- std::cout << " For further informations, please visit: http://wiki.flightgear.org/FGCom_3.0" << std::endl;
+ std::cout << " For further information, please visit: http://wiki.flightgear.org/FGCom_3.0" << std::endl;
std::cout << "" << std::endl;
std::cout << " About silence-threshold:" << std::endl;
std::cout << " This is the limit, in dB, when FGCom consider no voice in your microphone." << std::endl;