diff options
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]; |