From 552647ceb13dd76f02b55077962a62a5583f2131 Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Tue, 17 May 2005 15:50:11 +0000 Subject: [PATCH] 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 --- engine/client/cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_parse.c b/engine/client/cl_parse.c index 37e0729e9..3537a1bce 100644 --- a/engine/client/cl_parse.c +++ b/engine/client/cl_parse.c @@ -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)); } }