Merge pull request #183 from Arkshine/fix/cstrike-remove-stringtolower
Remove use of UTIL_StringToLowwer
This commit is contained in:
commit
c197b58734
|
@ -90,9 +90,6 @@ DETOUR_DECL_STATIC1(C_ClientCommand, void, edict_t*, pEdict) // void ClientComma
|
|||
// to be used in OnBuy* forwards.
|
||||
if ((ForwardOnBuyAttempt != -1 || ForwardOnBuy != -1) && command && *command)
|
||||
{
|
||||
// Just for safety.
|
||||
command = UTIL_StringToLower((char *)command);
|
||||
|
||||
int itemId = 0;
|
||||
|
||||
// Handling buy via menu.
|
||||
|
|
|
@ -121,13 +121,3 @@ bool UTIL_CheckForPublic(const char *publicname)
|
|||
return false;
|
||||
}
|
||||
|
||||
char *UTIL_StringToLower(char *str)
|
||||
{
|
||||
char *p;
|
||||
for (p = str; *p != '\0'; ++p)
|
||||
{
|
||||
*p = tolower(*p);
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user