1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Tweak command-line arguments to make them more UNIX-like

Also improves the command-line help text readability.
This commit is contained in:
Hugo Locurcio
2017-06-21 11:09:30 +02:00
committed by Rémi Verschelde
parent d8cd849a43
commit 1d757c43d7
4 changed files with 104 additions and 104 deletions

View File

@@ -929,10 +929,10 @@ void ProjectManager::_open_project_confirm() {
List<String> args;
args.push_back("-path");
args.push_back("--path");
args.push_back(path);
args.push_back("-editor");
args.push_back("--editor");
String exec = OS::get_singleton()->get_executable_path();
@@ -982,7 +982,7 @@ void ProjectManager::_run_project_confirm() {
List<String> args;
args.push_back("-path");
args.push_back("--path");
args.push_back(path);
String exec = OS::get_singleton()->get_executable_path();