diff options
author | Max Horn | 2007-04-26 20:26:49 +0000 |
---|---|---|
committer | Max Horn | 2007-04-26 20:26:49 +0000 |
commit | e9f8035b53797c6c58c0597041b94aa737a06857 (patch) | |
tree | 089f3979a4e50560dd60c666f81e05202910c917 | |
parent | a3ca3a3a3fbdb66b11ba17dbd3fcd06ded79a217 (diff) | |
download | scummvm-rg350-e9f8035b53797c6c58c0597041b94aa737a06857.tar.gz scummvm-rg350-e9f8035b53797c6c58c0597041b94aa737a06857.tar.bz2 scummvm-rg350-e9f8035b53797c6c58c0597041b94aa737a06857.zip |
Remove bogus use of tstr2 (which is empty at this point anyway)
svn-id: r26599
-rw-r--r-- | common/advancedDetector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/advancedDetector.cpp b/common/advancedDetector.cpp index 792acf47b2..401284e4e3 100644 --- a/common/advancedDetector.cpp +++ b/common/advancedDetector.cpp @@ -315,7 +315,7 @@ static ADGameDescList detectGame(const FSList *fslist, const Common::ADParams &p debug(3, "+ %s", tstr.c_str()); if (!filesMD5.contains(tstr)) { if (testFile.open(file->_key)) { - filesSize[tstr] = filesSize[tstr2] = (int32)testFile.size(); + filesSize[tstr] = (int32)testFile.size(); testFile.close(); if (md5_file_string(file->_key.c_str(), md5str, params.md5Bytes)) { |