Lowercase instead of uppercase the string
This commit is contained in:
parent
eed7625a45
commit
1fc21e1286
1 changed files with 1 additions and 1 deletions
|
|
@ -464,7 +464,7 @@ FUNCINLINE static ATTRINLINE UINT32 W_HashLumpName(const char *name, size_t len)
|
|||
{
|
||||
char *uname = (char *)alloca(len + 1);
|
||||
strlcpy(uname, name, len + 1);
|
||||
strupr(uname);
|
||||
strlwr(uname);
|
||||
return HASH32(uname, len);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue