diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-11-05 00:07:04 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-11-05 00:07:04 +0000 |
commit | beec5dc0084a7efa2527c849aa68b9fa663829ae (patch) | |
tree | 576a0fe7f807036f3580a07a58cc1982c833631d /src/main.cpp | |
parent | 61b6ae09b58f24d4ada42b2e2ee9cc73e710d242 (diff) | |
download | mana-beec5dc0084a7efa2527c849aa68b9fa663829ae.tar.gz mana-beec5dc0084a7efa2527c849aa68b9fa663829ae.tar.bz2 mana-beec5dc0084a7efa2527c849aa68b9fa663829ae.tar.xz mana-beec5dc0084a7efa2527c849aa68b9fa663829ae.zip |
Use \n instead of std::endl when writing to stdout.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/main.cpp b/src/main.cpp index 28128494..c1919bc0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -352,19 +352,18 @@ void exit_engine() void printHelp() { - std::cout - << "tmw" << std::endl << std::endl - << "Options: " << std::endl - << " -h --help : Display this help" << std::endl - << " -u --skipupdate : Skip the update process" << std::endl - << " -U --username : Login with this username" << std::endl - << " -P --password : Login with this password" << std::endl - << " -D --default : Bypass the login process with default settings" - << std::endl - << " -s --server : Login Server name or IP" << std::endl - << " -o --port : Login Server Port" << std::endl - << " -p --playername : Login with this player" << std::endl - << " -C --configfile : Configuration file to use" << std::endl; + std::cout << + "tmw\n\n" + "Options:\n" + " -h --help : Display this help\n" + " -u --skipupdate : Skip the update process\n" + " -U --username : Login with this username\n" + " -P --password : Login with this password\n" + " -D --default : Bypass the login process with default settings\n" + " -s --server : Login Server name or IP\n" + " -o --port : Login Server Port\n" + " -p --playername : Login with this player\n" + " -C --configfile : Configuration file to use\n"; } void parseOptions(int argc, char *argv[], Options &options) |