mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 01:41:10 +00:00
Whee, another char index issue.
This commit is contained in:
parent
d074f4a983
commit
5613b272da
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ wad_get_hash (void *l, void *unused)
|
|||
int i;
|
||||
|
||||
for (i = 0; i < 16; i++)
|
||||
name[i] = tolower (((lumpinfo_t *) l)->name[i]);
|
||||
name[i] = tolower ((byte) ((lumpinfo_t *) l)->name[i]);
|
||||
name[16] = 0;
|
||||
return Hash_String (name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue