mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
don't bother lowercasing download filenames now that they're forced
lowercase during the precache stage
This commit is contained in:
parent
2dd3fab209
commit
0f119c7cdb
1 changed files with 0 additions and 10 deletions
|
@ -704,16 +704,6 @@ SV_BeginDownload_f (ucmd_t *cmd)
|
|||
Qclose (host_client->download);
|
||||
host_client->download = NULL;
|
||||
}
|
||||
// lowercase name (needed for casesen file systems)
|
||||
{
|
||||
char *p = Hunk_TempAlloc (strlen (name) + 1);
|
||||
char *n = p;
|
||||
|
||||
while (*name)
|
||||
*p++ = tolower ((byte) *name++);
|
||||
*p = 0;
|
||||
name = n;
|
||||
}
|
||||
|
||||
zip = strchr (Info_ValueForKey (host_client->userinfo, "*cap"), 'z') != 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue