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:
Mark Olsen 2005-05-17 15:50:11 +00:00
parent 5f1ac1f246
commit 552647ceb1
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
}