forked from organicmaps/organicmaps
[iOS] fixed small typo.
This commit is contained in:
parent
0a158bc95d
commit
691de51674
1 changed files with 3 additions and 3 deletions
|
@ -44,15 +44,15 @@ Platform::Platform()
|
|||
NSBundle * bundle = [NSBundle mainBundle];
|
||||
NSString * path = [bundle resourcePath];
|
||||
m_resourcesDir = [path UTF8String];
|
||||
m_resourcesDir += '/';
|
||||
m_resourcesDir += "/";
|
||||
|
||||
NSArray * dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
|
||||
NSString * docsDir = [dirPaths objectAtIndex:0];
|
||||
m_writableDir = [docsDir UTF8String];
|
||||
m_writableDir += '/';
|
||||
m_writableDir += "/";
|
||||
m_settingsDir = m_writableDir;
|
||||
m_tmpDir = [NSHomeDirectory() UTF8String];
|
||||
m_tmpDir += '/tmp/';
|
||||
m_tmpDir += "/tmp/";
|
||||
|
||||
// Hardcoding screen resolution depending on the device we are running.
|
||||
m_impl->m_visualScale = 1.0;
|
||||
|
|
Loading…
Add table
Reference in a new issue