diff options
author | Travis Howell | 2004-02-02 07:53:55 +0000 |
---|---|---|
committer | Travis Howell | 2004-02-02 07:53:55 +0000 |
commit | 02ba3dd201b41ee6a7f9fc25ddb93524dabfc179 (patch) | |
tree | a75a6e5e93c9bfbcd86240c3ded12a07f3f28997 /simon | |
parent | 3694bcde1b0d99fca4be3d4ea3635efd3da40dde (diff) | |
download | scummvm-rg350-02ba3dd201b41ee6a7f9fc25ddb93524dabfc179.tar.gz scummvm-rg350-02ba3dd201b41ee6a7f9fc25ddb93524dabfc179.tar.bz2 scummvm-rg350-02ba3dd201b41ee6a7f9fc25ddb93524dabfc179.zip |
Remove md5 checksum, too many conflicting checksums.
svn-id: r12714
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index b80f6bf869..95eab95924 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -28,7 +28,6 @@ #include "common/config-manager.h" #include "common/file.h" -#include "common/md5.h" #include "gui/about.h" #include "gui/message.h" @@ -523,19 +522,6 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst) memcpy (_hebrew_char_widths, "\x5\x5\x4\x6\x5\x3\x4\x5\x6\x3\x5\x5\x4\x6\x5\x3\x4\x6\x5\x6\x6\x6\x5\x5\x5\x6\x5\x6\x6\x6\x6\x6", 32); - char buf[50]; - uint8 md5sum[16]; - - if (_game & GF_OLD_BUNDLE) - sprintf(buf, gss->gamepc_filename); - else - sprintf(buf, gss->gme_filename); - if (md5_file(buf, md5sum)) { - for (int j = 0; j < 16; j++) - printf("%02x", md5sum[j]); - printf(" %s\n", buf); - } - // Setup mixer if (!_mixer->isReady()) warning("Sound initialization failed. " |