[iOS] fixed small typo.

This commit is contained in:
rachytski 2012-01-08 16:07:20 +04:00 committed by Alex Zolotarev
parent 0a158bc95d
commit 691de51674

View file

@ -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;