summaryrefslogtreecommitdiffstats
path: root/src/jake2/client
diff options
context:
space:
mode:
authorCarsten Weisse <[email protected]>2004-10-25 21:57:49 +0000
committerCarsten Weisse <[email protected]>2004-10-25 21:57:49 +0000
commit9db92c11ce4d047e1661707378dd574626ec038f (patch)
tree72a256d7a89e30148efaac667f00f08b5fe6da19 /src/jake2/client
parentdbf7fe54e41a0c9dccd01a34bbe8c98091185e7f (diff)
downladed files will be stored in level directory
(save games and config.cfg put to .jake2)
Diffstat (limited to 'src/jake2/client')
-rw-r--r--src/jake2/client/CL_parse.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/jake2/client/CL_parse.java b/src/jake2/client/CL_parse.java
index d7716e2..2cf562b 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.14 2004-10-24 23:48:22 cawe Exp $
+ * $Id: CL_parse.java,v 1.15 2004-10-25 21:57:49 cawe Exp $
*/
/*
Copyright (C) 1997-2001 Id Software, Inc.
@@ -56,11 +56,7 @@ public class CL_parse {
// =============================================================================
public static String DownloadFileName(String fn) {
- return FS.Gamedir() + "/" + fn;
-// if (fn.startsWith("players"))
-// return Globals.BASEDIRNAME + "/" + fn;
-// else
-// return FS.Gamedir() + "/" + fn;
+ return FS.BaseGamedir() + "/" + fn;
}
/*