mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Fixed an endian bug with world model checksum when connecting to a server.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1020 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5f1ac1f246
commit
552647ceb1
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ void Model_NextDownload (void)
|
|||
{
|
||||
// done with modellist, request first of static signon messages
|
||||
// CL_SendClientCommand("prespawn %i 0 %i", cl.servercount, cl.worldmodel->checksum2);
|
||||
CL_SendClientCommand(true, prespawn_name, cl.servercount, cl.worldmodel->checksum2);
|
||||
CL_SendClientCommand(true, prespawn_name, cl.servercount, LittleLong(cl.worldmodel->checksum2));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue