From 478b8716ac16df2707ebd3fc8be725eead401512 Mon Sep 17 00:00:00 2001
From: Christopher Schwarz <lakitu7@gmail.com>
Date: Mon, 21 Feb 2011 07:51:30 +0000
Subject: * Fix text buffer from printing letters with the incorrect case in a
 rare case (/dev/humancontroller/)

---
 src/ui/ui_shared.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/ui')

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 ||
-- 
cgit