mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
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:
parent
088fb98279
commit
d1f28ddb43
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue