mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 12:43:43 +00:00
Merge pull request #63170 from KoBeWi/main_failed
This commit is contained in:
commit
5db878a76e
@ -1044,10 +1044,9 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||||||
|
|
||||||
if (I->next()) {
|
if (I->next()) {
|
||||||
String p = I->next()->get();
|
String p = I->next()->get();
|
||||||
if (OS::get_singleton()->set_cwd(p) == OK) {
|
if (OS::get_singleton()->set_cwd(p) != OK) {
|
||||||
//nothing
|
OS::get_singleton()->print("Invalid project path specified: \"%s\", aborting.\n", p.utf8().get_data());
|
||||||
} else {
|
goto error;
|
||||||
project_path = I->next()->get(); //use project_path instead
|
|
||||||
}
|
}
|
||||||
N = I->next()->next();
|
N = I->next()->next();
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user