forked from organicmaps/organicmaps
[win32] Fix compilation.
This commit is contained in:
parent
8839c1d4ba
commit
db337aff59
1 changed files with 2 additions and 2 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Reference in a new issue