summaryrefslogtreecommitdiff
path: root/src/qcommon/msg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/qcommon/msg.c')
-rw-r--r--src/qcommon/msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/msg.c b/src/qcommon/msg.c
index dc1d1e9e..9e90b0f2 100644
--- a/src/qcommon/msg.c
+++ b/src/qcommon/msg.c
@@ -521,7 +521,7 @@ int MSG_HashKey(const char *string, int maxlen) {
hash = 0;
for (i = 0; i < maxlen && string[i] != '\0'; i++) {
- if (string[i] & 0x80 || string[i] == '%')
+ if (string[i] & 0x80)
hash += '.' * (119 + i);
else
hash += string[i] * (119 + i);