[Scummvm-git-logs] scummvm master -> c502cae231ba65cdb79909dba04b20a71b209d73

digitall noreply at scummvm.org
Sat Mar 26 11:36:01 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
c502cae231 PLUMBERS: Add File MD5 Checksum to Detection Entry


Commit: c502cae231ba65cdb79909dba04b20a71b209d73
    https://github.com/scummvm/scummvm/commit/c502cae231ba65cdb79909dba04b20a71b209d73
Author: D G Turner (digitall at scummvm.org)
Date: 2022-03-26T11:34:34Z

Commit Message:
PLUMBERS: Add File MD5 Checksum to Detection Entry

This avoids false positive detections on unsupported games with
matching files by name and size.

Changed paths:
    engines/plumbers/detection.cpp


diff --git a/engines/plumbers/detection.cpp b/engines/plumbers/detection.cpp
index e5cd0b3945d..7145551cbe5 100644
--- a/engines/plumbers/detection.cpp
+++ b/engines/plumbers/detection.cpp
@@ -43,7 +43,7 @@ static const ADGameDescription gameDescriptions[] = {
 	{
 		"plumbers",
 		nullptr,
-		AD_ENTRY1s("GAME.BIN", nullptr, 41622),
+		AD_ENTRY1s("GAME.BIN", "02c965b11e952ce1ee83019576f5aef5", 41622),
 		Common::EN_ANY,
 		Common::kPlatformWindows,
 		ADGF_NO_FLAGS,
@@ -54,7 +54,7 @@ static const ADGameDescription gameDescriptions[] = {
 	{
 		"plumbers",
 		nullptr,
-		AD_ENTRY1s("launchme", nullptr, 143300),
+		AD_ENTRY1s("launchme", nullptr, 143300), // FIXME: Add MD5sum to entry
 		Common::EN_ANY,
 		Common::kPlatform3DO,
 		ADGF_UNSTABLE,




More information about the Scummvm-git-logs mailing list