aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/common.c
diff options
context:
space:
mode:
authorthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-10-12 17:17:15 +0000
committerthilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-10-12 17:17:15 +0000
commitbcb1609aa7ad9f6b19df8b512ddd2c74e294d020 (patch)
tree13f0b273c0aad4401cd802d2dd2e7f2381d23a8d /code/qcommon/common.c
parent209b588ef5ae91b35ddd8a2b792b2b4abe97669c (diff)
downloadioquake3-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/qcommon/common.c')
-rw-r--r--code/qcommon/common.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/code/qcommon/common.c b/code/qcommon/common.c
index 2f4e843..b8bef85 100644
--- a/code/qcommon/common.c
+++ b/code/qcommon/common.c
@@ -673,22 +673,6 @@ int Com_FilterPath(char *filter, char *name, int casesensitive)
}
/*
-============
-Com_HashKey
-============
-*/
-int Com_HashKey(char *string, int maxlen) {
- int register hash, i;
-
- hash = 0;
- for (i = 0; i < maxlen && string[i] != '\0'; i++) {
- hash += string[i] * (119 + i);
- }
- hash = (hash ^ (hash >> 10) ^ (hash >> 20));
- return hash;
-}
-
-/*
================
Com_RealTime
================