diff options
Diffstat (limited to 'src/game.c')
| -rw-r--r-- | src/game.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -90,7 +90,7 @@ static void main_loop_server(socket_list_t* client_socks) } } -void start_game(const bool servermode, const char* addr, const char* port) +void start_game(const bool servermode, const char* addr, const char* port, const uint8_t num_players) { assert(addr != NULL && port != NULL); @@ -106,7 +106,6 @@ void start_game(const bool servermode, const char* addr, const char* port) { int server_sock; socket_list_t client_socks; - uint8_t num_players = 3; srand(time(0)); // Initialize RNG //srand(1337); // Constant debug RNG seed |
