mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-01-22 16:01:25 +00:00
remove the commented out versions of the modellist etc code
This commit is contained in:
parent
3affa48786
commit
77555241bd
1 changed files with 0 additions and 5 deletions
|
@ -310,7 +310,6 @@ Model_NextDownload (void)
|
|||
|
||||
// done with modellist, request first of static signon messages
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
// MSG_WriteString (&cls.netchan.message, va("prespawn %i 0 %i", cl.servercount, cl.worldmodel->checksum2));
|
||||
MSG_WriteString (&cls.netchan.message,
|
||||
va (prespawn_name, cl.servercount,
|
||||
cl.worldmodel->checksum2));
|
||||
|
@ -355,7 +354,6 @@ Sound_NextDownload (void)
|
|||
cl_h_playerindex = -1;
|
||||
cl_gib1index = cl_gib2index = cl_gib3index = -1;
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
// MSG_WriteString (&cls.netchan.message, va("modellist %i 0", cl.servercount));
|
||||
MSG_WriteString (&cls.netchan.message,
|
||||
va (modellist_name, cl.servercount, 0));
|
||||
}
|
||||
|
@ -700,7 +698,6 @@ CL_ParseServerData (void)
|
|||
// ask for the sound list next
|
||||
memset (cl.sound_name, 0, sizeof (cl.sound_name));
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
// MSG_WriteString (&cls.netchan.message, va("soundlist %i 0", cl.servercount));
|
||||
MSG_WriteString (&cls.netchan.message,
|
||||
va (soundlist_name, cl.servercount, 0));
|
||||
|
||||
|
@ -757,7 +754,6 @@ CL_ParseSoundlist (void)
|
|||
|
||||
if (n) {
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
// MSG_WriteString (&cls.netchan.message, va("soundlist %i %i", cl.servercount, n));
|
||||
MSG_WriteString (&cls.netchan.message,
|
||||
va (soundlist_name, cl.servercount, n));
|
||||
return;
|
||||
|
@ -813,7 +809,6 @@ CL_ParseModellist (void)
|
|||
|
||||
if (n) {
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
// MSG_WriteString (&cls.netchan.message, va("modellist %i %i", cl.servercount, n));
|
||||
MSG_WriteString (&cls.netchan.message,
|
||||
va (modellist_name, cl.servercount, n));
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue