Unify Maximum supported clients, raised SDKTools limit (bug 5964, r=psychonic).

This commit is contained in:
Kyle Sanderson
2014-05-06 18:40:35 -07:00
parent 6f47b1a89d
commit b1901da79f
13 changed files with 26 additions and 30 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ CookieManager g_CookieManager;
CookieManager::CookieManager()
{
for (int i=0; i<=MAXCLIENTS; i++)
for (int i=0; i<=SM_MAXPLAYERS; i++)
{
connected[i] = false;
statsLoaded[i] = false;
+7 -7
View File
@@ -73,13 +73,13 @@ struct Cookie
dbid = -1;
for (int i=0; i<=MAXCLIENTS; i++)
for (int i=0; i<=SM_MAXPLAYERS; i++)
data[i] = NULL;
}
~Cookie()
{
for (int i=0; i<=MAXCLIENTS; i++)
for (int i=0; i<=SM_MAXPLAYERS; i++)
{
if (data[i] != NULL)
delete data[i];
@@ -89,7 +89,7 @@ struct Cookie
char name[MAX_NAME_LENGTH+1];
char description[MAX_DESC_LENGTH+1];
int dbid;
CookieData *data[MAXCLIENTS+1];
CookieData *data[SM_MAXPLAYERS+1];
CookieAccess access;
static inline bool matches(const char *name, const Cookie *cookie)
@@ -133,11 +133,11 @@ public:
private:
NameHashSet<Cookie *> cookieFinder;
SourceHook::List<CookieData *> clientData[MAXCLIENTS+1];
SourceHook::List<CookieData *> clientData[SM_MAXPLAYERS+1];
bool connected[MAXCLIENTS+1];
bool statsLoaded[MAXCLIENTS+1];
bool statsPending[MAXCLIENTS+1];
bool connected[SM_MAXPLAYERS+1];
bool statsLoaded[SM_MAXPLAYERS+1];
bool statsPending[SM_MAXPLAYERS+1];
};
extern CookieManager g_CookieManager;
-2
View File
@@ -32,8 +32,6 @@
#ifndef _INCLUDE_SOURCEMOD_EXTENSION_PROPER_H_
#define _INCLUDE_SOURCEMOD_EXTENSION_PROPER_H_
#define MAXCLIENTS 65
#include <stdlib.h>
#include <stdarg.h>
#include "smsdk_ext.h"