aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Roes2016-11-03 16:27:40 +0100
committerRémi Verschelde2016-11-15 08:28:58 +0100
commitd7ec7688051dd3995ce42dbc851b302eaf52ffb6 (patch)
tree2a5138e83669cf20f0b036d37710fe56c8c46547
parent86c6aabf27f42c653d7af65a59a15c9cfcd90a7e (diff)
downloadgodot-d7ec7688051dd3995ce42dbc851b302eaf52ffb6.tar.gz
godot-d7ec7688051dd3995ce42dbc851b302eaf52ffb6.tar.zst
godot-d7ec7688051dd3995ce42dbc851b302eaf52ffb6.zip
Fix typos and missing newlines in --help
(cherry picked from commit c34aa331ec2dc9d77ce5f7032af750a0693527a2)
-rw-r--r--main/main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/main/main.cpp b/main/main.cpp
index 29ce03f7f..d18ccc7c1 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -159,7 +159,7 @@ void Main::print_help(const char* p_binary) {
OS::get_singleton()->print("%s",OS::get_singleton()->get_video_driver_name(i));
}
OS::get_singleton()->print(")\n");
- OS::get_singleton()->print("\t-ldpi\t : Force low-dpi mode (OSX Only)");
+ OS::get_singleton()->print("\t-ldpi\t : Force low-dpi mode (OSX Only)\n");
OS::get_singleton()->print("\t-ad DRIVER\t : Audio Driver (");
for (int i=0;i<OS::get_singleton()->get_audio_driver_count();i++) {
@@ -169,8 +169,7 @@ void Main::print_help(const char* p_binary) {
OS::get_singleton()->print("%s",OS::get_singleton()->get_audio_driver_name(i));
}
OS::get_singleton()->print(")\n");
- OS::get_singleton()->print("\t-rthread <mode>\t : Render Thread Mode ('unsafe', 'safe', 'separate).");
- OS::get_singleton()->print(")\n");
+ OS::get_singleton()->print("\t-rthread <mode>\t : Render Thread Mode ('unsafe', 'safe', 'separate').\n");
OS::get_singleton()->print("\t-s,-script [script] : Run a script.\n");
OS::get_singleton()->print("\t-d,-debug : Debug (local stdout debugger).\n");
OS::get_singleton()->print("\t-rdebug ADDRESS : Remote debug (<ip>:<port> host address).\n");