Code: Select all
.\network.c(86): warning #175: subscript out of range
for (cs = _clients; cs != &_clients[MAX_CLIENT_INFO]; cs++) {
^
Code: Select all
NetworkClientState _clients[MAX_CLIENTS];
Code: Select all
#define MAX_CLIENT_INFO (MAX_CLIENTS + 1)