Do not error out on correct runway surface
This commit is contained in:
parent
fcdeaae2fd
commit
ea0fd7d9dd
1 changed files with 9 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue