sv_main.c (SV_SpawnServer): made the dummy array 8 bytes long.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@110 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2010-03-09 14:15:34 +00:00
parent 088fb98279
commit d1f28ddb43

View file

@ -1274,7 +1274,7 @@ This is called at the start of each level
extern float scr_centertime_off;
void SV_SpawnServer (char *server)
{
static char dummy[4] = { 0, 0, 0, 0 };
static char dummy[8] = { 0,0,0,0,0,0,0,0 };
edict_t *ent;
int i;