diff options
author | Max Horn | 2004-08-05 11:13:00 +0000 |
---|---|---|
committer | Max Horn | 2004-08-05 11:13:00 +0000 |
commit | b4223febd350ffaa2265570669e88a30642c4ca1 (patch) | |
tree | 73cf089aa11e3e26f669e73f44783215889efeec /sword1 | |
parent | 61bf615168d1619f97d00ed7b08ea4a92c916732 (diff) | |
download | scummvm-rg350-b4223febd350ffaa2265570669e88a30642c4ca1.tar.gz scummvm-rg350-b4223febd350ffaa2265570669e88a30642c4ca1.tar.bz2 scummvm-rg350-b4223febd350ffaa2265570669e88a30642c4ca1.zip |
Enhanced extrapath support
svn-id: r14470
Diffstat (limited to 'sword1')
-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 2cd0205286..69f7bb5a53 100644 --- a/sword1/resman.cpp +++ b/sword1/resman.cpp @@ -58,12 +58,6 @@ ResMan::~ResMan(void) { void ResMan::loadCluDescript(const char *fileName) { File resFile; resFile.open(fileName); - if (!resFile.isOpen()) { - // Uh-uh, file not found. Perhaps we're playing straight from CD2? - // Check the Extra Path. - const Common::String ePath = ConfMan.get("extrapath"); - resFile.open(fileName, File::kFileReadMode, ePath.c_str()); - } if (!resFile.isOpen()) { char msg[512]; |