diff options
author | Eugene Sandulenko | 2010-06-15 10:19:06 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-06-15 10:19:06 +0000 |
commit | 9224a0bd6e560dbd6dbf3a07f136ba412e1bd316 (patch) | |
tree | a6892aec69be426e5cf6f8d3fcc014f8088080bc | |
parent | 6d4ad23b55c328fd1674b07330f85b14bfc20482 (diff) | |
download | scummvm-rg350-9224a0bd6e560dbd6dbf3a07f136ba412e1bd316.tar.gz scummvm-rg350-9224a0bd6e560dbd6dbf3a07f136ba412e1bd316.tar.bz2 scummvm-rg350-9224a0bd6e560dbd6dbf3a07f136ba412e1bd316.zip |
Hid hashed fileopening to debuglevel 8.
svn-id: r49705
-rw-r--r-- | common/file.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/file.cpp b/common/file.cpp index 6291aa8855..dec0f2a953 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -51,11 +51,11 @@ bool File::open(const String &filename, Archive &archive) { SeekableReadStream *stream = 0; if ((stream = archive.createReadStreamForMember(filename))) { - debug(3, "Opening hashed: %s", filename.c_str()); + debug(8, "Opening hashed: %s", filename.c_str()); } else if ((stream = archive.createReadStreamForMember(filename + "."))) { // WORKAROUND: Bug #1458388: "SIMON1: Game Detection fails" // sometimes instead of "GAMEPC" we get "GAMEPC." (note trailing dot) - debug(3, "Opening hashed: %s.", filename.c_str()); + debug(8, "Opening hashed: %s.", filename.c_str()); } return open(stream, filename); |