mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 12:47:52 +00:00
fixe typos
This commit is contained in:
parent
d4cc0d8148
commit
2d464e79dc
1 changed files with 3 additions and 3 deletions
|
@ -134,13 +134,13 @@ int main(int argc, char** argv) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (preferred_game.empty()) {
|
if (preferred_game.empty()) {
|
||||||
std::cout << "prefered game is empty!\n\n";
|
std::cout << "preferred game is empty!\n\n";
|
||||||
PrintHelp(argv[0]);
|
PrintHelp(argv[0]);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (preferred_game_id == 0) {
|
if (preferred_game_id == 0) {
|
||||||
std::cout << "prefered-game-id not set!\nThis should get set to allow users to find your "
|
std::cout << "preferred-game-id not set!\nThis should get set to allow users to find your "
|
||||||
"room.\nSet with --prefered-game-id id\n\n";
|
"room.\nSet with --preferred-game-id id\n\n";
|
||||||
}
|
}
|
||||||
if (max_members >= Network::MaxConcurrentConnections || max_members < 2) {
|
if (max_members >= Network::MaxConcurrentConnections || max_members < 2) {
|
||||||
std::cout << "max_members needs to be in the range 2 - "
|
std::cout << "max_members needs to be in the range 2 - "
|
||||||
|
|
Loading…
Reference in a new issue