Browse Source

macOS: Fixed console apps.

Бранимир Караџић 1 month ago
parent
commit
5e71b83296
1 changed files with 2 additions and 1 deletions
  1. 2 1
      examples/common/entry/entry_osx.mm

+ 2 - 1
examples/common/entry/entry_osx.mm

@@ -65,7 +65,8 @@ namespace entry
 					char path[PATH_MAX];
 					if (CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8*)path, PATH_MAX) )
 					{
-						chdir(path);
+						// This breaks console apps, but it's not needed on windowed.
+						//chdir(path);
 					}
 
 					CFRelease(resourcesURL);