From 22042bc63741321557b401833adf9d2ccf10eb3b Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 25 Mar 2006 04:17:17 +0000 Subject: - 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 --- engines/gob/gob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/gob') diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 58bf4252a8..2dbee4cd1f 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -343,7 +343,7 @@ Engine *Engine_GOB_create(GameDetector * detector, OSystem *syst) { uint8 md5sum[16]; char md5str[32 + 1]; - if (Common::md5_file("intro.stk", md5sum, ConfMan.get("path").c_str(), kMD5FileSizeLimit)) { + if (Common::md5_file("intro.stk", md5sum, NULL, kMD5FileSizeLimit)) { for (int j = 0; j < 16; j++) { sprintf(md5str + j*2, "%02x", (int)md5sum[j]); } -- cgit v1.2.3