forked from organicmaps/organicmaps-tmp
[generator] Make internet_access type always present
This commit is contained in:
parent
afca613c57
commit
b7b98f376f
1 changed files with 2 additions and 1 deletions
|
@ -215,6 +215,7 @@ namespace
|
|||
static const uint32_t psurface = classif().GetTypeByPath({ "psurface" });
|
||||
static const uint32_t wheelchair = classif().GetTypeByPath({ "wheelchair" });
|
||||
static const uint32_t sponsored = classif().GetTypeByPath({ "sponsored" });
|
||||
static const uint32_t internet = classif().GetTypeByPath({ "internet_access" });
|
||||
|
||||
// Caching type length to exclude generic [wheelchair].
|
||||
uint8_t const typeLength = ftype::GetLevel(type);
|
||||
|
@ -237,7 +238,7 @@ namespace
|
|||
if (wheelchair == type && typeLength == 2)
|
||||
return true;
|
||||
|
||||
if (sponsored == type)
|
||||
if (sponsored == type || internet == type)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue