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:
authorAlex Zolotarev <deathbaba@gmail.com>2011-11-13 21:03:01 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:27:47 +0300
commit6900c06052dc64ebf16f0c2876a5c06cd74fa0b1 (patch)
tree1df7b87273fc02e545f05857b4d983a8fc4c7fc8 /platform/platform_linux.cpp
parent1f3457d50db1219d7f1f3523c3ce78e4f7d8fa39 (diff)
[linux] Fixed path to resources dir
Diffstat (limited to 'platform/platform_linux.cpp')
-rw-r--r--platform/platform_linux.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/platform_linux.cpp b/platform/platform_linux.cpp
index 0331e0f757..4de81fe05a 100644
--- a/platform/platform_linux.cpp
+++ b/platform/platform_linux.cpp
@@ -39,7 +39,7 @@ Platform::Platform()
CHECK(GetBinaryFolder(path), ("Can't retrieve path to executable"));
// @TODO implement correct resources and writable directories for public releases
- m_resourcesDir = path + "../../../data";
+ m_resourcesDir = path + "../../data/";
m_writableDir = m_resourcesDir;
LOG(LDEBUG, ("Resources directory:", m_resourcesDir));