diff options
author | Paul Gilbert | 2006-08-06 09:18:38 +0000 |
---|---|---|
committer | Paul Gilbert | 2006-08-06 09:18:38 +0000 |
commit | 9f74320aef2ea3d829e569c1c5e8c49b5a9d4d34 (patch) | |
tree | 89b4ae090f0cf39b4419610fec09a6d7c6314caf /engines/lure | |
parent | a27f905eeaf569b76733006e2261bd5d5247fa25 (diff) | |
download | scummvm-rg350-9f74320aef2ea3d829e569c1c5e8c49b5a9d4d34.tar.gz scummvm-rg350-9f74320aef2ea3d829e569c1c5e8c49b5a9d4d34.tar.bz2 scummvm-rg350-9f74320aef2ea3d829e569c1c5e8c49b5a9d4d34.zip |
Reduced MD5 checking to 1Kb, and recalculated MD5 strings
svn-id: r23686
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/lure.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 1605a4e7aa..324ac8056b 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -45,8 +45,8 @@ namespace Lure { enum { - // We only compute MD5 of the first megabyte of our data files. - kMD5FileSizeLimit = 1024 * 1024 + // We only compute MD5 of the first kilobyte of our data files. + kMD5FileSizeLimit = 1024 }; struct GameSettings { @@ -62,12 +62,12 @@ struct GameSettings { // static const GameSettings lure_games[] = { { "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::EN_ANY, - "e45ea5d279a268c7d3c6524c2f63a2d2", "disk1.vga" }, + "b2a8aa6d7865813a17a3c636e063572e", "disk1.vga" }, /* { "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::DE_DEU, - "00469bde05e79e634c3dd3931d3a708a", "disk1.vga" }, + "7aa19e444dab1ac7194d9f7a40ffe54a", "disk1.vga" }, { "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::FR_FRA, - "2e6c42dbc76ba4f329261f1ff7013309", "disk1.vga" }, + "1c94475c1bb7e0e88c1757d3b5377e94", "disk1.vga" }, */ { 0, 0, 0, 0, Common::UNK_LANG, 0, 0 } }; |