aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorChris Apers2004-10-08 16:09:52 +0000
committerChris Apers2004-10-08 16:09:52 +0000
commit757f2fdcefde1606e822acf00f0e6b783bd3174f (patch)
tree3fb1042806eca2b55b3df0f72f60153ae6ea8225 /sword2
parenta34c7e4b812705891eb76ead1f46b35f01b67f0d (diff)
downloadscummvm-rg350-757f2fdcefde1606e822acf00f0e6b783bd3174f.tar.gz
scummvm-rg350-757f2fdcefde1606e822acf00f0e6b783bd3174f.tar.bz2
scummvm-rg350-757f2fdcefde1606e822acf00f0e6b783bd3174f.zip
Prevent double slash in path
svn-id: r15473
Diffstat (limited to 'sword2')
-rw-r--r--sword2/sword2.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp
index c78f1492f7..39f83c551f 100644
--- a/sword2/sword2.cpp
+++ b/sword2/sword2.cpp
@@ -103,12 +103,12 @@ Sword2Engine::Sword2Engine(GameDetector *detector, OSystem *syst)
: Engine(syst) {
// Add default file directories
- File::addDefaultDirectory(_gameDataPath + "/CLUSTERS/");
- File::addDefaultDirectory(_gameDataPath + "/SWORD2/");
- File::addDefaultDirectory(_gameDataPath + "/VIDEO/");
- File::addDefaultDirectory(_gameDataPath + "/clusters/");
- File::addDefaultDirectory(_gameDataPath + "/sword2/");
- File::addDefaultDirectory(_gameDataPath + "/video/");
+ File::addDefaultDirectory(_gameDataPath + "CLUSTERS/");
+ File::addDefaultDirectory(_gameDataPath + "SWORD2/");
+ File::addDefaultDirectory(_gameDataPath + "VIDEO/");
+ File::addDefaultDirectory(_gameDataPath + "clusters/");
+ File::addDefaultDirectory(_gameDataPath + "sword2/");
+ File::addDefaultDirectory(_gameDataPath + "video/");
g_sword2 = this;
_debugger = NULL;