mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-22 01:45:19 +01:00
public: make hash case-insensitive again
This commit is contained in:
parent
1e0107944f
commit
c6c86f9665
@ -438,7 +438,10 @@ uint COM_HashKey( const char *string, uint hashSize )
|
||||
unsigned char i;
|
||||
|
||||
while(( i = *string++ ))
|
||||
{
|
||||
i = Q_tolower( i );
|
||||
hashKey = ( hashKey << 5 ) + hashKey + ( i & 0xDF );
|
||||
}
|
||||
|
||||
return hashKey & ( hashSize - 1 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user