1
0
Fork 0

Merge /u/deltaecho/terragear/ branch next into next

https://sourceforge.net/p/flightgear/terragear/merge-requests/19/
This commit is contained in:
xDraconian 2020-12-24 00:01:24 +00:00
commit db606f647d

View file

@ -183,10 +183,10 @@ void Runway::gen_runway_section( const tgPolygon& runway,
}
if ( startw_pct == 0.0f ) {
lshoulder_width = 11.0;
lshoulder_width = width/4.0;
}
if ( endw_pct == 1.0f ) {
rshoulder_width = 11.0;
rshoulder_width = width/4.0;
}
} else {
// We add a fake shoulder if the runway has an asphalt or concrete surface
@ -882,4 +882,4 @@ void Runway::BuildShoulder( tgpolygon_list& rwy_polys,
rwy_polys.push_back( shoulder_polys[i] );
accum.Add( shoulder );
}
}
}