Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorExMix <rahuba.youri@mapswithme.com>2014-09-19 20:15:23 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:28:31 +0300
commit24050a8d3f4aadd937ceaa078ecec773859b8828 (patch)
tree141477294da2072553c08dfa274aa53922ce2c34 /map/track.cpp
parent5f56c1ccf47c96e8c47f39e714a62e288359066e (diff)
[core] track rendering fix
Diffstat (limited to 'map/track.cpp')
-rw-r--r--map/track.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/track.cpp b/map/track.cpp
index 34d54fbab8..192ed9fa35 100644
--- a/map/track.cpp
+++ b/map/track.cpp
@@ -81,7 +81,7 @@ void Track::CreateDisplayList(graphics::Screen * dlScreen, MatrixT const & matri
{
graphics::Pen::Info const outlineInfo(m_outlineColor, m_width + 2 * m_outlineWidth);
uint32_t const outlineId = dlScreen->mapInfo(outlineInfo);
- dlScreen->drawPath(pts2.data(), pts2.size(), 0, outlineId, graphics::tracksDepth);
+ dlScreen->drawPath(pts2.data(), pts2.size(), 0, outlineId, graphics::tracksOutlineDepth);
}
dlScreen->drawPath(pts2.data(), pts2.size(), 0, resId, graphics::tracksDepth);