mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Remove obsolete code for obfuscation.
This commit is contained in:
parent
99fe055931
commit
11d9608fca
1 changed files with 1 additions and 11 deletions
|
@ -1275,21 +1275,11 @@ CL_SendPureChecksums
|
|||
=================
|
||||
*/
|
||||
void CL_SendPureChecksums( void ) {
|
||||
const char *pChecksums;
|
||||
char cMsg[MAX_INFO_VALUE];
|
||||
int i;
|
||||
|
||||
// if we are pure we need to send back a command with our referenced pk3 checksums
|
||||
pChecksums = FS_ReferencedPakPureChecksums();
|
||||
Com_sprintf(cMsg, sizeof(cMsg), "cp %d %s", cl.serverId, FS_ReferencedPakPureChecksums());
|
||||
|
||||
// "cp"
|
||||
// "Yf"
|
||||
Com_sprintf(cMsg, sizeof(cMsg), "Yf ");
|
||||
Q_strcat(cMsg, sizeof(cMsg), va("%d ", cl.serverId) );
|
||||
Q_strcat(cMsg, sizeof(cMsg), pChecksums);
|
||||
for (i = 0; i < 2; i++) {
|
||||
cMsg[i] += 10;
|
||||
}
|
||||
CL_AddReliableCommand( cMsg );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue