diff options
| author | Rémi Verschelde | 2017-08-21 21:01:19 +0200 |
|---|---|---|
| committer | GitHub | 2017-08-21 21:01:19 +0200 |
| commit | 4717d37bfa867d8cdcd4805967324978da6701b7 (patch) | |
| tree | e4a11a8d27eb22f864d25acc4d55ed42a9344554 /platform/uwp/export/export.cpp | |
| parent | 01d4ffd3ee8abbbfba45871ee8d83eee18d3bf97 (diff) | |
| parent | 93f1fb1c2f74de3ff996895761d083fadd257397 (diff) | |
| download | godot-4717d37bfa867d8cdcd4805967324978da6701b7.tar.gz godot-4717d37bfa867d8cdcd4805967324978da6701b7.tar.zst godot-4717d37bfa867d8cdcd4805967324978da6701b7.zip | |
Merge pull request #10471 from akien-mga/args-doubledash
Third take at making command-line arguments more UNIX-like + main.cpp and help cleanup
Diffstat (limited to '')
| -rw-r--r-- | platform/uwp/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index 39717196a..68307c4e9 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -1330,7 +1330,7 @@ public: } if (!(p_flags & DEBUG_FLAG_DUMB_CLIENT)) { - cl.push_back("-path"); + cl.push_back("--path"); cl.push_back("game"); } |
