aboutsummaryrefslogtreecommitdiff
path: root/sword1
diff options
context:
space:
mode:
authorMax Horn2004-08-19 15:53:15 +0000
committerMax Horn2004-08-19 15:53:15 +0000
commite11787a494a2a7def5be1ba41cc4002de81f0c7e (patch)
treef041c72fff6244655bda531cc3c96cbed139ad4b /sword1
parent9fadfae98d859d762b1afd12d111d6246a846132 (diff)
downloadscummvm-rg350-e11787a494a2a7def5be1ba41cc4002de81f0c7e.tar.gz
scummvm-rg350-e11787a494a2a7def5be1ba41cc4002de81f0c7e.tar.bz2
scummvm-rg350-e11787a494a2a7def5be1ba41cc4002de81f0c7e.zip
No need to manually check inside extrapath -- this is done automatically anyway
svn-id: r14644
Diffstat (limited to 'sword1')
-rw-r--r--sword1/resman.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/sword1/resman.cpp b/sword1/resman.cpp
index 69f7bb5a53..c6636a6b43 100644
--- a/sword1/resman.cpp
+++ b/sword1/resman.cpp
@@ -251,12 +251,6 @@ File *ResMan::openClusterFile(uint32 id) {
char fileName[15];
sprintf(fileName, "%s.CLU", _prj.clu[(id >> 24)-1]->label);
clusFile->open(fileName);
- if (!clusFile->isOpen()) {
- // Uh-uh, file not found. Perhaps we're playing straight from CD2,
- // and its looking for something like SCRIPTS.CLU. Check the Extra Path.
- const Common::String ePath = ConfMan.get("extrapath");
- clusFile->open(fileName, File::kFileReadMode, ePath.c_str());
- }
if (!clusFile->isOpen()) {
char msg[512];