[Scummvm-git-logs] scummvm master -> 3639e049c6b01e4a08107c7f135854a574548fa0
lolbot-iichan
noreply at scummvm.org
Thu Feb 17 21:44:14 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:
47667b7053 WINTERMUTE: Fix fallback for multipackage games
3639e049c6 WINTERMUTE: Add detection for GOG version of Barrow Hill
Commit: 47667b70531c664ed8ca9ab1a5a69df2ca12533a
https://github.com/scummvm/scummvm/commit/47667b70531c664ed8ca9ab1a5a69df2ca12533a
Author: lb_ii (lolbot_iichan at mail.ru)
Date: 2022-02-18T00:44:11+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: 3639e049c6b01e4a08107c7f135854a574548fa0
https://github.com/scummvm/scummvm/commit/3639e049c6b01e4a08107c7f135854a574548fa0
Author: lb_ii (lolbot_iichan at mail.ru)
Date: 2022-02-18T00:44:11+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