Remove unecessary cwd logic.

This commit is contained in:
Christian Speckner 2019-08-18 22:10:02 +02:00
parent 17f5180682
commit 06f452e7bd
1 changed files with 0 additions and 21 deletions

View File

@ -25,24 +25,6 @@ static SDLMain* sharedInstance = nil;
return sharedInstance;
}
// ----------------------------------------------------------------------------
// Set the working directory to the .app's parent directory
- (void) setupWorkingDirectory
{
char parentdir[MAXPATHLEN];
CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle());
CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url);
if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8*)parentdir, MAXPATHLEN))
{
chdir(parentdir); /* chdir to the binary app's parent */
}
CFRelease(url);
CFRelease(url2);
}
// ----------------------------------------------------------------------------
/**
* Catch document open requests...this lets us notice files when the app
@ -75,9 +57,6 @@ static SDLMain* sharedInstance = nil;
{
int status;
// Set the working directory to the .app's parent directory
[self setupWorkingDirectory];
calledMainline = TRUE;
if (openFilename) {