diff options
author | Patric Stout <truebrain@openttd.org> | 2021-05-08 10:57:10 +0200 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-07-10 20:17:07 +0200 |
commit | de7ab2eb1c8bd5695a3ffa4390b9fd46d34d9d71 (patch) | |
tree | 83335984f9a61b7246227c1ef933153985a5e56b /src/network | |
parent | 6212d0a8da81f0f348bf4dcb03e332b3ef661a60 (diff) | |
download | openttd-de7ab2eb1c8bd5695a3ffa4390b9fd46d34d9d71.tar.xz |
Cleanup: remove unused optional ctor parameter for NetworkGameList
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_gamelist.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/network/network_gamelist.h b/src/network/network_gamelist.h index 7fdd37c66..9a98207d9 100644 --- a/src/network/network_gamelist.h +++ b/src/network/network_gamelist.h @@ -16,10 +16,7 @@ /** Structure with information shown in the game list (GUI) */ struct NetworkGameList { - NetworkGameList(const std::string &connection_string, bool manually = false) : - connection_string(connection_string), manually(manually) - { - } + NetworkGameList(const std::string &connection_string) : connection_string(connection_string) {} NetworkGameInfo info = {}; ///< The game information of this server std::string connection_string; ///< Address of the server |