forked from organicmaps/organicmaps
[generator] Fixed logic error in WikiChecker::NeedFeature.
This commit is contained in:
parent
4cdf39a326
commit
4fa6e915bf
1 changed files with 2 additions and 2 deletions
|
@ -204,10 +204,10 @@ public:
|
|||
{
|
||||
bool need = true;
|
||||
feature.ForEachType([&](uint32_t type) {
|
||||
if (need && !IsMatched(type))
|
||||
if (need && IsMatched(type))
|
||||
need = false;
|
||||
});
|
||||
return need;
|
||||
return !need;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue