1
0
Fork 0

Fix a typo.

This commit is contained in:
James Turner 2012-12-19 10:06:52 +00:00
parent 4e7304a913
commit 3c6fbffdf2

View file

@ -417,7 +417,7 @@ void FGAirport::readThresholdData(SGPropertyNode* aRoot)
SGPropertyNode* t0 = runway->getChild("threshold", 0), SGPropertyNode* t0 = runway->getChild("threshold", 0),
*t1 = runway->getChild("threshold", 1); *t1 = runway->getChild("threshold", 1);
assert(t0); assert(t0);
assert(t1); // too strict? mayeb we should finally allow single-ended runways assert(t1); // too strict? maybe we should finally allow single-ended runways
processThreshold(t0); processThreshold(t0);
processThreshold(t1); processThreshold(t1);