diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index f7aa020708..b241446b93 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -253,7 +253,7 @@ FollowedPolyline::UpdatedProjection FollowedPolyline::GetClosestMatchedProjectio if (dp >= minDistUnmatched && dp >= minDist) continue; - if (std::binary_search(m_unmatchedSegmentIndexes.begin(), m_unmatchedSegmentIndexes.end(), it.m_ind)) + if (!std::binary_search(m_unmatchedSegmentIndexes.begin(), m_unmatchedSegmentIndexes.end(), it.m_ind)) { if (minDist > dp) // overwrite best match for matched segment { diff --git a/routing/route.cpp b/routing/route.cpp index 69530a2739..3c123e1c9d 100644 --- a/routing/route.cpp +++ b/routing/route.cpp @@ -256,7 +256,7 @@ Route::MovedIteratorInfo Route::MoveIteratorToReal(location::GpsInfo const & inf info.m_longitude, info.m_latitude, max(m_routingSettings.m_matchingThresholdM, info.m_horizontalAccuracy)); auto resUpdate = m_poly.UpdateMatchedProjection(rect); - return MovedIteratorInfo{resUpdate.updatedProjection, resUpdate.closerToFake}; + return MovedIteratorInfo{resUpdate.updatedProjection, resUpdate.closerToUnmatched}; } double Route::GetPolySegAngle(size_t ind) const