Merge pull request #37719 from bruvzg/macos_ignore_psn

Ignore process serial number argument passed by macOS Gatekeeper.
This commit is contained in:
Rémi Verschelde 2020-04-10 10:44:05 +02:00 committed by GitHub
commit 4c36feb180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -478,6 +478,14 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
I = args.front();
while (I) {
#ifdef OSX_ENABLED
// Ignore the process serial number argument passed by macOS Gatekeeper.
// Otherwise, Godot would try to open a non-existent project on the first start and abort.
if (I->get().begins_with("-psn_")) {
I = I->next();
continue;
}
#endif
List<String>::Element *N = I->next();