Searched defs:maxclients (Results 1 - 3 of 3) sorted by relevance

/external/quake/quake/src/WinQuake/
H A Dserver.h24 int maxclients; member in struct:__anon4689
26 struct client_s *clients; // [maxclients]
H A Dclient.h215 int maxclients; member in struct:__anon4435
228 scoreboard_t *scores; // [cl.maxclients]
/external/quake/quake/src/QW/server/
H A Dsv_main.c69 cvar_t maxclients = {"maxclients","8", false, true}; variable
637 if ( maxclients.value > MAX_CLIENTS )
638 Cvar_SetValue ("maxclients", MAX_CLIENTS);
641 if (maxspectators.value + maxclients.value > MAX_CLIENTS)
642 Cvar_SetValue ("maxspectators", MAX_CLIENTS - maxspectators.value + maxclients.value);
644 || (!spectator && clients >= (int)maxclients.value) )
1321 Cvar_RegisterVariable (&maxclients);

Completed in 15 milliseconds