diff options
author | Max Horn | 2004-08-19 15:53:15 +0000 |
---|---|---|
committer | Max Horn | 2004-08-19 15:53:15 +0000 |
commit | e11787a494a2a7def5be1ba41cc4002de81f0c7e (patch) | |
tree | f041c72fff6244655bda531cc3c96cbed139ad4b | |
parent | 9fadfae98d859d762b1afd12d111d6246a846132 (diff) | |
download | scummvm-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
-rw-r--r-- | sword1/resman.cpp | 6 |
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]; |