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/app.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/app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/app.cpp b/platform/uwp/app.cpp index c773c0b74..8824d1c1d 100644 --- a/platform/uwp/app.cpp +++ b/platform/uwp/app.cpp @@ -512,7 +512,7 @@ void App::UpdateWindowSize(Size size) { char **App::get_command_line(unsigned int *out_argc) { - static char *fail_cl[] = { "-path", "game", NULL }; + static char *fail_cl[] = { "--path", "game", NULL }; *out_argc = 2; FILE *f = _wfopen(L"__cl__.cl", L"rb"); |
