[Scummvm-git-logs] scummvm master -> 8a7780cf52fc22822f030b20660da6ea27a93afd

sev- sev at scummvm.org
Sat Oct 23 20:01:08 UTC 2021


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:
8a7780cf52 DIRECTOR: Use tail md5 for the fallback detection


Commit: 8a7780cf52fc22822f030b20660da6ea27a93afd
    https://github.com/scummvm/scummvm/commit/8a7780cf52fc22822f030b20660da6ea27a93afd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-10-23T23:00:54+03:00

Commit Message:
DIRECTOR: Use tail md5 for the fallback detection

Changed paths:
    engines/director/detection.cpp


diff --git a/engines/director/detection.cpp b/engines/director/detection.cpp
index 35a58ff544..2cd8092c2d 100644
--- a/engines/director/detection.cpp
+++ b/engines/director/detection.cpp
@@ -111,7 +111,7 @@ static Director::DirectorGameDescription s_fallbackDesc = {
 		AD_ENTRY1(0, 0),
 		Common::UNK_LANG,
 		Common::kPlatformWindows,
-		ADGF_NO_FLAGS,
+		ADGF_TAILMD5,	// We calculate tail of the projector
 		GUIO0()
 	},
 	Director::GID_GENERIC,
@@ -275,7 +275,7 @@ ADDetectedGame DirectorMetaEngineDetection::fallbackDetect(const FileMap &allFil
 		Common::strlcpy(s_fallbackExtraBuf, extra.c_str(), sizeof(s_fallbackExtraBuf) - 1);
 		desc->desc.extra = s_fallbackExtraBuf;
 
-		warning("Director fallback detection %s", extra.c_str());
+		warning("Director fallback detection %s (uses tail MD5)", extra.c_str());
 
 		ADDetectedGame game(&desc->desc);
 




More information about the Scummvm-git-logs mailing list