From db337aff595b414426a304a63b4caeed1f0b7b60 Mon Sep 17 00:00:00 2001 From: vng Date: Fri, 9 Dec 2011 09:41:43 +0300 Subject: [PATCH] [win32] Fix compilation. --- platform/platform_win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/platform_win.cpp b/platform/platform_win.cpp index cd5e394a7e..b8e390209b 100644 --- a/platform/platform_win.cpp +++ b/platform/platform_win.cpp @@ -44,14 +44,14 @@ Platform::Platform() // 1. try to use data folder in the same path as executable // 2. if not found, try to use ..\..\..\data (for development only) path.erase(path.find_last_of('\\')); - if (IsFileExists(path + "\\data\\")) + if (IsFileExistsByFullPath(path + "\\data\\")) m_resourcesDir = path + "\\data\\"; else { #ifndef OMIM_PRODUCTION path.erase(path.find_last_of('\\')); path.erase(path.find_last_of('\\')); - if (IsFileExists(path + "\\data\\")) + if (IsFileExistsByFullPath(path + "\\data\\")) m_resourcesDir = path + "\\data\\"; #else CHECK(false, ("Can't find resources directory"));