[Scummvm-git-logs] scummvm master -> c19597d49d3c11ad98f5ff1a007fc05381396e1e
sev-
noreply at scummvm.org
Sun Aug 14 14:44:54 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:
c19597d49d MACVENTURE: Fix detection for Deja Vu 1993, others
Commit: c19597d49d3c11ad98f5ff1a007fc05381396e1e
https://github.com/scummvm/scummvm/commit/c19597d49d3c11ad98f5ff1a007fc05381396e1e
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2022-08-14T16:44:51+02:00
Commit Message:
MACVENTURE: Fix detection for Deja Vu 1993, others
Changed paths:
engines/macventure/detection.cpp
diff --git a/engines/macventure/detection.cpp b/engines/macventure/detection.cpp
index f54078336e4..c03d84f3015 100644
--- a/engines/macventure/detection.cpp
+++ b/engines/macventure/detection.cpp
@@ -41,7 +41,7 @@ static const ADGameDescription gameDescriptions[] = {
// 1993 Mac rereleases (identical to the Zojoi rereleases), no protection
MACGAME("shadowgate", "1993 rerelease", "Shadowgate", "0f4eb65cf369c6c75e4b991b986c34a2", 68718),
- MACGAME("deja_vu", "1993 rerelease", "xn--Dj Vu-sqa5d", "0f4eb65cf369c6c75e4b991b986c34a2", 6877), // original filename is "Déjà Vu"
+ MACGAME("deja_vu", "1993 rerelease", "xn--Dj Vu-sqa5d", "0f4eb65cf369c6c75e4b991b986c34a2", 68778), // original filename is "Déjà Vu"
MACGAME("deja_vu2", "1993 rerelease", "Lost in Las Vegas", "0f4eb65cf369c6c75e4b991b986c34a2", 66264),
MACGAME("uninvited", "1993 rerelease", "Uninvited", "0f4eb65cf369c6c75e4b991b986c34a2", 68974),
@@ -86,7 +86,7 @@ class MacVentureMetaEngineDetection : public AdvancedMetaEngineDetection {
public:
MacVentureMetaEngineDetection() : AdvancedMetaEngineDetection(MacVenture::gameDescriptions, sizeof(ADGameDescription), macventureGames) {
_guiOptions = GUIO1(GUIO_NOMIDI);
- _md5Bytes = 5000000; // TODO: Upper limit, adjust it once all games are added
+ _md5Bytes = 5000;
}
const char *getName() const override {
More information about the Scummvm-git-logs
mailing list