1
0
Fork 0

Do not error out on correct runway surface

This commit is contained in:
Christian Schmitt 2011-10-16 13:36:37 +02:00
parent fcdeaae2fd
commit ea0fd7d9dd

View file

@ -157,6 +157,14 @@ int Runway::BuildBtg( float alt_m, superpoly_list* rwy_polys, texparams_list* te
{ {
// water // water
} }
else if ( rwy.surface == 14 /* Snow / Ice */ )
{
// Ice
}
else if ( rwy.surface == 15 /* Transparent */ )
{
//Transparent texture
}
else else
{ {
SG_LOG(SG_GENERAL, SG_WARN, "surface_code = " << rwy.surface); SG_LOG(SG_GENERAL, SG_WARN, "surface_code = " << rwy.surface);