This commit is contained in:
Branimir Karadžić 2014-07-06 22:14:20 -07:00
parent 92000fcb57
commit 3b3120c04d

View file

@ -60,8 +60,10 @@ namespace entry
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef resourcesURL = CFBundleCopyResourcesDirectoryURL(mainBundle);
char path[PATH_MAX];
if (CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX))
if (CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX) )
{
chdir(path);
}
CFRelease(resourcesURL);
MainThreadEntry* self = (MainThreadEntry*)_userData;