diff options
author | Eugene Sandulenko | 2006-03-25 04:17:17 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-03-25 04:17:17 +0000 |
commit | 22042bc63741321557b401833adf9d2ccf10eb3b (patch) | |
tree | 5122e534a141c37092e8f583bb33669c49e434e8 /engines/lure | |
parent | 3331de7105fe8ece9268ad0bc9123dba01a33a2b (diff) | |
download | scummvm-rg350-22042bc63741321557b401833adf9d2ccf10eb3b.tar.gz scummvm-rg350-22042bc63741321557b401833adf9d2ccf10eb3b.tar.bz2 scummvm-rg350-22042bc63741321557b401833adf9d2ccf10eb3b.zip |
- Implemented case insensitive file reading. Left old system as a fallback
in case some engine writer decide to do something unwise
- Removed used of ConfMan.getKey("path") in file-related cases, because
now File class handles that
- Fixed bug in ScummEngine_v80he::o80_getFileSize() where path delimiters
weren't translated
svn-id: r21443
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/lure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 1aa37046e7..a034fec156 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -221,7 +221,7 @@ void LureEngine::detectGame() { if (!Common::File::exists(g->checkFile)) continue; - if (Common::md5_file(g->checkFile, md5sum, ConfMan.get("path").c_str(), kMD5FileSizeLimit)) { + if (Common::md5_file(g->checkFile, md5sum, NULL, kMD5FileSizeLimit)) { for (int j = 0; j < 16; j++) { sprintf(md5str + j * 2, "%02x", (int)md5sum[j]); } |