HomeSort by relevance Sort by last modified time
    Searched defs:maxclients (Results 1 - 3 of 3) sorted by null

  /external/quake/quake/src/WinQuake/
server.h 24 int maxclients; member in struct:__anon7064
26 struct client_s *clients; // [maxclients]
client.h 215 int maxclients; member in struct:__anon6810
228 scoreboard_t *scores; // [cl.maxclients]
  /external/quake/quake/src/QW/server/
sv_main.c 69 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);
    [all...]

Completed in 1063 milliseconds