mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
Increased localmodels array size to 8 (better alignment)
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@464 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
7dd3ee7a58
commit
f340ea2687
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
server_t sv;
|
||||
server_static_t svs;
|
||||
|
||||
char localmodels[MAX_MODELS][6]; // inline model names for precache
|
||||
char localmodels[MAX_MODELS][8]; // inline model names for precache
|
||||
|
||||
int sv_protocol = PROTOCOL_FITZQUAKE; //johnfitz
|
||||
|
||||
|
@ -67,6 +67,7 @@ void SV_Protocol_f (void)
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
===============
|
||||
SV_Init
|
||||
|
|
Loading…
Reference in a new issue