diff --git a/code/qcommon/q_shared.c b/code/qcommon/q_shared.c index 37f2ec05..be72dc70 100644 --- a/code/qcommon/q_shared.c +++ b/code/qcommon/q_shared.c @@ -1221,7 +1221,7 @@ void Info_RemoveKey( char *s, const char *key ) { } *o = 0; - if (!strcmp (key, pkey) ) + if (!Q_stricmp (key, pkey) ) { memmove(start, s, strlen(s) + 1); // remove this part @@ -1277,7 +1277,7 @@ void Info_RemoveKey_Big( char *s, const char *key ) { } *o = 0; - if (!strcmp (key, pkey) ) + if (!Q_stricmp (key, pkey) ) { memmove(start, s, strlen(s) + 1); // remove this part return;