don't bother lowercasing download filenames now that they're forced

lowercase during the precache stage
This commit is contained in:
Bill Currie 2003-03-13 16:33:29 +00:00
parent 2dd3fab209
commit 0f119c7cdb
1 changed files with 0 additions and 10 deletions

View File

@ -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;