diff options
Diffstat (limited to 'src/client/client.h')
-rw-r--r-- | src/client/client.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/client/client.h b/src/client/client.h index 5a1106b4..206d5dd9 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -283,12 +283,13 @@ typedef struct { char info[MAX_INFO_STRING]; } ping_t; +#define MAX_FEATLABEL_CHARS 1024 typedef struct { netadr_t adr; char hostName[MAX_HOSTNAME_LENGTH]; char mapName[MAX_NAME_LENGTH]; char game[MAX_NAME_LENGTH]; - char *label; // for featured servers, NULL otherwise + char label[MAX_FEATLABEL_CHARS]; // for featured servers, NULL otherwise int netType; int gameType; int clients; @@ -299,9 +300,6 @@ typedef struct { qboolean visible; } serverInfo_t; -#define MAX_FEATURED_LABELS 8 -#define MAX_FEATLABEL_CHARS 1024 - typedef struct { connstate_t state; // connection status @@ -338,9 +336,6 @@ typedef struct { int numfavoriteservers; serverInfo_t favoriteServers[MAX_OTHER_SERVERS]; - int numFeaturedServerLabels; - char featuredServerLabels[ MAX_FEATURED_LABELS ][ MAX_FEATLABEL_CHARS ]; - int pingUpdateSource; // source currently pinging or updating // update server info |