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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-02-01 15:43:20 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-02-01 15:43:20 +0300
commit5013336567ac1c1d115745b99c471b17c2700ca6 (patch)
tree5700b066163d31e9eb37ae022f2305f37b9f819a /drape/symbols_texture.cpp
parente487db8556bc8fc775f4cd6c452493f6a220c7b8 (diff)
Added road shields rendering
Diffstat (limited to 'drape/symbols_texture.cpp')
-rw-r--r--drape/symbols_texture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape/symbols_texture.cpp b/drape/symbols_texture.cpp
index 5db348a0da..bc8dfd381d 100644
--- a/drape/symbols_texture.cpp
+++ b/drape/symbols_texture.cpp
@@ -162,7 +162,7 @@ void LoadSymbols(string const & skinPathName, bool convertToUV,
ASSERT(glm::isPowerOfTwo(w), (w));
ASSERT(glm::isPowerOfTwo(h), (h));
- if (width == w && height == h)
+ if (width == static_cast<uint32_t>(w) && height == static_cast<uint32_t>(h))
{
completionHandler(data, width, height);
}