aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEugene Sandulenko2007-01-25 00:47:35 +0000
committerEugene Sandulenko2007-01-25 00:47:35 +0000
commitc92f2ec2123c4639cc062a9b14e8babaa6674eb9 (patch)
tree7cc07d55e15b4eedc11ce5a8ae4c8561c13474b2 /common
parent9dada67e5af879cd2556d43e33e521a9bd1b2ab4 (diff)
downloadscummvm-rg350-c92f2ec2123c4639cc062a9b14e8babaa6674eb9.tar.gz
scummvm-rg350-c92f2ec2123c4639cc062a9b14e8babaa6674eb9.tar.bz2
scummvm-rg350-c92f2ec2123c4639cc062a9b14e8babaa6674eb9.zip
Print out file size for unmatched files. Also alter output slighty.
svn-id: r25175
Diffstat (limited to 'common')
-rw-r--r--common/advancedDetector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/advancedDetector.cpp b/common/advancedDetector.cpp
index c64aecc3c2..7d0e3c834d 100644
--- a/common/advancedDetector.cpp
+++ b/common/advancedDetector.cpp
@@ -354,7 +354,7 @@ static ADList detectGame(ADGameDescList gameDescriptions, const FSList *fslist,
printf("ScummVM team along with your game name and version:\n");
for (StringMap::const_iterator file = filesMD5.begin(); file != filesMD5.end(); ++file)
- printf("%s: %s\n", file->_key.c_str(), file->_value.c_str());
+ printf("%s: \"%s\", %d\n", file->_key.c_str(), file->_value.c_str(), filesSize[file->_key]);
}
return matched;