macOS: Fixed console apps.

This commit is contained in:
Бранимир Караџић
2025-11-03 14:02:31 -08:00
parent accf0ab417
commit 5e71b83296

View File

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