summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ui/ui_shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/ui_shared.c b/src/ui/ui_shared.c
index c54a8ea0..ba61cffd 100644
--- a/src/ui/ui_shared.c
+++ b/src/ui/ui_shared.c
@@ -4487,7 +4487,7 @@ static qboolean UI_CheckWrapCache( const char *text, rectDef_t *rect, float scal
{
wrapCache_t *cacheEntry = &wrapCache[ i ];
- if( Q_stricmp( text, cacheEntry->text ) )
+ if( strcmp( text, cacheEntry->text ) )
continue;
if( rect->x != cacheEntry->rect.x ||