X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=common.c;h=74d26067a8d79d74a3f1dca692b7ba59940da51b;hb=701925453d9a40b422e3f29fd13e30fe59a9b572;hp=09acf5820d23663fd02ada794ef9f0b42c6d1a11;hpb=0e936f973c3dcb7f74691912db3ad85e8805ccf1;p=xonotic%2Fdarkplaces.git diff --git a/common.c b/common.c index 09acf582..74d26067 100644 --- a/common.c +++ b/common.c @@ -40,7 +40,7 @@ const char **com_argv; #define CMDLINE_LENGTH 1024 char com_cmdline[CMDLINE_LENGTH]; -int gamemode; +gamemode_t gamemode; const char *gamename; const char *gamedirname1; const char *gamedirname2; @@ -491,25 +491,6 @@ float MSG_ReadAngle (int protocol) //=========================================================================== -void SZ_Alloc (sizebuf_t *buf, int startsize, const char *name) -{ - if (startsize < 256) - startsize = 256; - buf->mempool = Mem_AllocPool(name, 0, NULL); - buf->data = Mem_Alloc(buf->mempool, startsize); - buf->maxsize = startsize; - buf->cursize = 0; -} - - -void SZ_Free (sizebuf_t *buf) -{ - Mem_FreePool(&buf->mempool); - buf->data = NULL; - buf->maxsize = 0; - buf->cursize = 0; -} - void SZ_Clear (sizebuf_t *buf) { buf->cursize = 0; @@ -982,6 +963,9 @@ static const gamemode_info_t gamemode_info [] = // GAME_NETHERWORLD // COMMANDLINEOPTION: Game: -netherworld runs the game Netherworld: Dark Masters { "netherworld", "-netherworld", "Dark Masters", "id1", "netherworld", "nw", "darkplaces"}, +// GAME_THEHUNTED +// COMMANDLINEOPTION: Game: -netherworld runs the game The Hunted +{ "thehunted", "-thehunted", "The Hunted", "thdata", NULL, "th", "thehunted"}, }; void COM_InitGameType (void)