diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-08-16 17:17:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-16 17:17:56 +0200 |
commit | b1ecaaa22b8dd87a75db414cb84ad0f60d5d4cef (patch) | |
tree | f02f5dac7b5a1c0e35c2290513b62f4873b81a93 /modules/enet | |
parent | ae78a13f59c5a4025d078084afae2737cf0d1454 (diff) | |
parent | 428f03cf06d3841b2a593f46aa42912ef5c82f3c (diff) |
Merge pull request #10307 from Rubonnek/update-argument-names
Updated function argument names
Diffstat (limited to 'modules/enet')
-rw-r--r-- | modules/enet/networked_multiplayer_enet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/enet/networked_multiplayer_enet.h b/modules/enet/networked_multiplayer_enet.h index 8b971adf55..f2c3b838e4 100644 --- a/modules/enet/networked_multiplayer_enet.h +++ b/modules/enet/networked_multiplayer_enet.h @@ -113,7 +113,7 @@ public: virtual int get_packet_peer() const; - Error create_server(int p_port, int p_max_peers = 32, int p_in_bandwidth = 0, int p_out_bandwidth = 0); + Error create_server(int p_port, int p_max_clients = 32, int p_in_bandwidth = 0, int p_out_bandwidth = 0); Error create_client(const IP_Address &p_ip, int p_port, int p_in_bandwidth = 0, int p_out_bandwidth = 0); void close_connection(); |