diff --git a/src/game/client/components/menus.h b/src/game/client/components/menus.h index f07231d73..dae2b20de 100644 --- a/src/game/client/components/menus.h +++ b/src/game/client/components/menus.h @@ -403,8 +403,8 @@ protected: bool operator<(const CFriendItem &Other) const { - const int Result = str_comp(m_aName, Other.m_aName); - return Result < 0 || (Result == 0 && str_comp(m_aClan, Other.m_aClan) < 0); + const int Result = str_comp_nocase(m_aName, Other.m_aName); + return Result < 0 || (Result == 0 && str_comp_nocase(m_aClan, Other.m_aClan) < 0); } };