[Scummvm-git-logs] scummvm wme_detection_2022_02 -> eb6880e2e11213a18b1a93eaed87667dad0c86b7

lolbot-iichan noreply at scummvm.org
Thu Feb 17 21:06:27 UTC 2022


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

Summary:
22c630a197 WINTERMUTE: Fix fallback for multipackage games
eb6880e2e1 WINTERMUTE: Add detection for GOG version of Barrow Hill


Commit: 22c630a1978b6a387db95c79cffcb62083baa5a6
    https://github.com/scummvm/scummvm/commit/22c630a1978b6a387db95c79cffcb62083baa5a6
Author: lb_ii (lolbot_iichan at mail.ru)
Date: 2022-02-17T23:20:18+03:00

Commit Message:
WINTERMUTE: Fix fallback for multipackage games

Changed paths:
    engines/wintermute/base/base_file_manager.cpp


diff --git a/engines/wintermute/base/base_file_manager.cpp b/engines/wintermute/base/base_file_manager.cpp
index 3dcb08b58c4..2359ff95c90 100644
--- a/engines/wintermute/base/base_file_manager.cpp
+++ b/engines/wintermute/base/base_file_manager.cpp
@@ -182,7 +182,7 @@ bool BaseFileManager::registerPackages(const Common::FSList &fslist) {
 	for (Common::FSList::const_iterator it = fslist.begin(); it != fslist.end(); ++it) {
 		debugC(kWintermuteDebugFileAccess, "Adding %s", it->getName().c_str());
 		if (it->getName().contains(".dcp")) {
-			if (registerPackage(*it)) {
+			if (registerPackage(*it, it->getName())) {
 				addPath(PATH_PACKAGE, *it);
 			}
 		}


Commit: eb6880e2e11213a18b1a93eaed87667dad0c86b7
    https://github.com/scummvm/scummvm/commit/eb6880e2e11213a18b1a93eaed87667dad0c86b7
Author: lb_ii (lolbot_iichan at mail.ru)
Date: 2022-02-17T23:59:13+03:00

Commit Message:
WINTERMUTE: Add detection for GOG version of Barrow Hill

GOG page: https://www.gog.com/en/game/barrow_hill_the_dark_path

Changed paths:
    engines/wintermute/detection_tables.h


diff --git a/engines/wintermute/detection_tables.h b/engines/wintermute/detection_tables.h
index e9a997a879b..e5a2c9bcc6d 100644
--- a/engines/wintermute/detection_tables.h
+++ b/engines/wintermute/detection_tables.h
@@ -433,6 +433,10 @@ static const WMEGameDescription gameDescriptions[] = {
 	WME_WINENTRY("barrowhilldp", "",
 		WME_ENTRY1s("data.dcp", "958b89bd394bbaae17a3abe51eb00b5b", 1066776), Common::DE_DEU, ADGF_UNSTABLE | GF_3D, WME_1_9_3),
 
+	// Barrow Hill - The Dark Path (GOG) (English)
+	WME_WINENTRY("barrowhilldp", "",
+		WME_ENTRY1s("data.dcp", "2b11a98ebc1afd07b4d03f650c32b12b", 1066752), Common::EN_ANY, ADGF_UNSTABLE | GF_3D, WME_1_9_3),
+
 	// Basis Octavus
 	WME_WINENTRY("basisoctavus", "",
 		WME_ENTRY1s("data.dcp", "021ef97f8f49ec33f83beae0d6e38f08", 49336909), Common::CZ_CZE, ADGF_UNSTABLE | GF_3D, WME_1_9_1),




More information about the Scummvm-git-logs mailing list