diff options
author | Carsten Weisse <[email protected]> | 2004-10-29 16:35:00 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2004-10-29 16:35:00 +0000 |
commit | 4d3167c97cd5d79c975e6e388a8c2c2391f71651 (patch) | |
tree | 2907435edc7b3f35da5f33122b7e7d735618138a /src/jake2/client/CL_parse.java | |
parent | 7a4681fc78189b96d1e3ca1c84b62ed9e8f88f01 (diff) |
bugfix: downloaded files should be lower case
Diffstat (limited to 'src/jake2/client/CL_parse.java')
-rw-r--r-- | src/jake2/client/CL_parse.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jake2/client/CL_parse.java b/src/jake2/client/CL_parse.java index a8acdad..611789d 100644 --- a/src/jake2/client/CL_parse.java +++ b/src/jake2/client/CL_parse.java @@ -2,7 +2,7 @@ * CL_parse.java * Copyright (C) 2004 * - * $Id: CL_parse.java,v 1.17 2004-10-28 22:52:38 cawe Exp $ + * $Id: CL_parse.java,v 1.18 2004-10-29 16:35:00 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -219,7 +219,7 @@ public class CL_parse { // open the file if not opened yet if (Globals.cls.download == null) { - String name = DownloadFileName(Globals.cls.downloadtempname); + String name = DownloadFileName(Globals.cls.downloadtempname).toLowerCase(); FS.CreatePath(name); |