summaryrefslogtreecommitdiff
path: root/platform/windows
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-02 10:25:03 +0200
committerGitHub <noreply@github.com>2022-07-02 10:25:03 +0200
commitec1348a72a510f68dfd2698bc368b29e2c72cbae (patch)
tree268019c51b5832ff48d135e761fc6af10f027bc7 /platform/windows
parent04bdd7eb9354c10abaa47e095dd45e89dc02cd0e (diff)
parentd38d76d039a20bfcbc0a8612fee1c9a37cc21c78 (diff)
Merge pull request #62618 from Bromeon/bugfix/exit-code
Fix exit code of --help and --version, and test them in CI
Diffstat (limited to 'platform/windows')
-rw-r--r--platform/windows/godot_windows.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/windows/godot_windows.cpp b/platform/windows/godot_windows.cpp
index 8de3ef294a..72920d2816 100644
--- a/platform/windows/godot_windows.cpp
+++ b/platform/windows/godot_windows.cpp
@@ -166,6 +166,10 @@ int widechar_main(int argc, wchar_t **argv) {
delete[] argv_utf8[i];
}
delete[] argv_utf8;
+
+ if (err == ERR_HELP) { // Returned by --help and --version, so success.
+ return 0;
+ }
return 255;
}