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

@ -156,7 +156,15 @@ int Runway::BuildBtg( float alt_m, superpoly_list* rwy_polys, texparams_list* te
else if ( rwy.surface == 13 /* Water runway (buoy's?) */ )
{
// water
}
}
else if ( rwy.surface == 14 /* Snow / Ice */ )
{
// Ice
}
else if ( rwy.surface == 15 /* Transparent */ )
{
//Transparent texture
}
else
{
SG_LOG(SG_GENERAL, SG_WARN, "surface_code = " << rwy.surface);