diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-10-12 17:17:15 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-10-12 17:17:15 +0000 |
commit | bcb1609aa7ad9f6b19df8b512ddd2c74e294d020 (patch) | |
tree | 13f0b273c0aad4401cd802d2dd2e7f2381d23a8d /code/client | |
parent | 209b588ef5ae91b35ddd8a2b792b2b4abe97669c (diff) | |
download | ioquake3-aero-bcb1609aa7ad9f6b19df8b512ddd2c74e294d020.tar.gz ioquake3-aero-bcb1609aa7ad9f6b19df8b512ddd2c74e294d020.zip |
Fix netcode inconsistency, thanks to /dev/humancontroller for the patch, see http://bugzilla.icculus.org/show_bug.cgi?id=4060
git-svn-id: svn://svn.icculus.org/quake3/trunk@1661 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/cl_input.c b/code/client/cl_input.c index 72056a2..f014768 100644 --- a/code/client/cl_input.c +++ b/code/client/cl_input.c @@ -863,7 +863,7 @@ void CL_WritePacket( void ) { // also use the message acknowledge key ^= clc.serverMessageSequence; // also use the last acknowledged server command in the key - key ^= Com_HashKey(clc.serverCommands[ clc.serverCommandSequence & (MAX_RELIABLE_COMMANDS-1) ], 32); + key ^= MSG_HashKey(clc.serverCommands[ clc.serverCommandSequence & (MAX_RELIABLE_COMMANDS-1) ], 32); // write all the commands, including the predicted command for ( i = 0 ; i < count ; i++ ) { |