diff options
author | Travis Howell | 2006-10-14 03:15:35 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-14 03:15:35 +0000 |
commit | 3559fcba43e359839a72dc9174b28c6fa0aa14cb (patch) | |
tree | 0b928780a1fa4f1081e6103c840b44a65ebbf28e | |
parent | 05baf18ad619128777c81398e56cd83e70a9790d (diff) | |
download | scummvm-rg350-3559fcba43e359839a72dc9174b28c6fa0aa14cb.tar.gz scummvm-rg350-3559fcba43e359839a72dc9174b28c6fa0aa14cb.tar.bz2 scummvm-rg350-3559fcba43e359839a72dc9174b28c6fa0aa14cb.zip |
Revert
svn-id: r24303
-rw-r--r-- | common/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp index 379654bd14..68360ce1d8 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -217,7 +217,7 @@ bool File::open(const String &filename, AccessMode mode) { _handle = fopenNoCase(filename, "", modeStr); } else if (_filesMap && _filesMap->contains(fname)) { fname = (*_filesMap)[fname]; - debug(0, "Opening hashed: %s", fname.c_str()); + debug(3, "Opening hashed: %s", fname.c_str()); _handle = fopen(fname.c_str(), modeStr); } else if (_filesMap && _filesMap->contains(fname + ".")) { // WORKAROUND: Bug #1458388: "SIMON1: Game Detection fails" |