[Scummvm-cvs-logs] SF.net SVN: scummvm: [23686] scummvm/trunk/engines/lure/lure.cpp

dreammaster at users.sourceforge.net dreammaster at users.sourceforge.net
Sun Aug 6 11:18:49 CEST 2006


Revision: 23686
Author:   dreammaster
Date:     2006-08-06 02:18:38 -0700 (Sun, 06 Aug 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23686&view=rev

Log Message:
-----------
Reduced MD5 checking to 1Kb, and recalculated MD5 strings

Modified Paths:
--------------
    scummvm/trunk/engines/lure/lure.cpp
Modified: scummvm/trunk/engines/lure/lure.cpp
===================================================================
--- scummvm/trunk/engines/lure/lure.cpp	2006-08-06 05:56:12 UTC (rev 23685)
+++ scummvm/trunk/engines/lure/lure.cpp	2006-08-06 09:18:38 UTC (rev 23686)
@@ -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 @@
 //
 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 }
 };


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list