Merge branch 'jmt/runway-fix'
This commit is contained in:
commit
78d9cacead
1 changed files with 7 additions and 1 deletions
|
@ -225,7 +225,13 @@ void RunwayGroup::setActive(const FGAirport* airport,
|
||||||
validSelection = true;
|
validSelection = true;
|
||||||
for (int j = 0; j < activeRwys; j++)
|
for (int j = 0; j < activeRwys; j++)
|
||||||
{
|
{
|
||||||
rwy = airport->getRunwayByIdent(rwyList[j].getRwyList(i));
|
string ident(rwyList[j].getRwyList(i));
|
||||||
|
if (!airport->hasRunwayWithIdent(ident)) {
|
||||||
|
SG_LOG(SG_GENERAL, SG_WARN, "no such runway:" << ident << " at " << airport->ident());
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
rwy = airport->getRunwayByIdent(ident);
|
||||||
|
|
||||||
//cerr << "Succes" << endl;
|
//cerr << "Succes" << endl;
|
||||||
hdgDiff = fabs(windHeading - rwy->headingDeg());
|
hdgDiff = fabs(windHeading - rwy->headingDeg());
|
||||||
|
|
Loading…
Reference in a new issue