[Scummvm-git-logs] scummvm master -> 1b4b9bb4a78a0081ee50de3e85d54295c7a6ad83
trembyle
noreply at scummvm.org
Tue Feb 1 20:39:18 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:
1b4b9bb4a7 DIRECTOR: Add D6 tag to fallback detection
Commit: 1b4b9bb4a78a0081ee50de3e85d54295c7a6ad83
https://github.com/scummvm/scummvm/commit/1b4b9bb4a78a0081ee50de3e85d54295c7a6ad83
Author: trembyle (sean.patrick.brody at gmail.com)
Date: 2022-02-01T15:38:41-05:00
Commit Message:
DIRECTOR: Add D6 tag to fallback detection
PJ97 was used for D6. This section will probably need to be replaced
in the future, but we might as well add the missing value while we're
still using it.
Changed paths:
engines/director/detection.cpp
diff --git a/engines/director/detection.cpp b/engines/director/detection.cpp
index 9f61dd3e326..83bb05439e9 100644
--- a/engines/director/detection.cpp
+++ b/engines/director/detection.cpp
@@ -215,6 +215,9 @@ ADDetectedGame DirectorMetaEngineDetection::fallbackDetect(const FileMap &allFil
case MKTAG('P', 'J', '9', '5'):
desc->version = 500;
break;
+ case MKTAG('P', 'J', '9', '7'):
+ desc->version = 600;
+ break;
case MKTAG('P', 'J', '0', '0'):
desc->version = 700;
break;
More information about the Scummvm-git-logs
mailing list