mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 00:30:52 +02:00
Fixed quibbles.
This commit is contained in:
parent
c6cb01c4b8
commit
694f093658
2 changed files with 9 additions and 5 deletions
|
@ -93,7 +93,8 @@ int main(int argc, const char* argv[]) {
|
|||
);
|
||||
QCommandLineOption listenPortOption(
|
||||
"listenPort",
|
||||
"Port to listen on."
|
||||
"Port to listen on.",
|
||||
"port_number"
|
||||
);
|
||||
QCommandLineOption serverContentPathOption(
|
||||
"serverContentPath",
|
||||
|
@ -151,15 +152,18 @@ int main(int argc, const char* argv[]) {
|
|||
);
|
||||
QCommandLineOption concurrentDownloadsOption(
|
||||
"concurrent-downloads",
|
||||
"Maximum concurrent resource downloads. Default is 16, except for Android where it is 4."
|
||||
"Maximum concurrent resource downloads. Default is 16, except for Android where it is 4.",
|
||||
"integer"
|
||||
);
|
||||
QCommandLineOption avatarURLOption(
|
||||
"avatarURL",
|
||||
"Override the avatar U.R.L."
|
||||
"Override the avatar U.R.L.",
|
||||
"url"
|
||||
);
|
||||
QCommandLineOption replaceAvatarURLOption(
|
||||
"replace-avatar-url",
|
||||
"Replaces the avatar U.R.L. When used with --avatarURL, this takes precedence."
|
||||
"Replaces the avatar U.R.L. When used with --avatarURL, this takes precedence.",
|
||||
"url"
|
||||
);
|
||||
QCommandLineOption setBookmarkOption(
|
||||
"setBookmark",
|
||||
|
|
Loading…
Reference in a new issue