[Scummvm-git-logs] scummvm master -> 6e8d69524e8e527ba6e24954273823e249fb8ee8

waltervn walter at vanniftrik-it.nl
Thu Sep 15 21:31:26 CEST 2016


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:
6e8d69524e ADL: Add md5sum for hires4-atari disk side 1B


Commit: 6e8d69524e8e527ba6e24954273823e249fb8ee8
    https://github.com/scummvm/scummvm/commit/6e8d69524e8e527ba6e24954273823e249fb8ee8
Author: Walter van Niftrik (walter at scummvm.org)
Date: 2016-09-15T21:29:17+02:00

Commit Message:
ADL: Add md5sum for hires4-atari disk side 1B

Changed paths:
    engines/adl/detection.cpp
    engines/adl/hires4.cpp



diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp
index 10812d7..5cd7cca 100644
--- a/engines/adl/detection.cpp
+++ b/engines/adl/detection.cpp
@@ -145,11 +145,13 @@ static const AdlGameDescription gameDescriptions[] = {
 			"hires4", 0,
 			{
 				{ "ULYS1A.XFD", 0, "26365d2b06509fd21e7a7919e33f7199", 92160 },
-				// FIXME: Add sides 1B and 2C
+				{ "ULYS1B.XFD", 0, "37919c72a4103e6f897ee7daa8261d1d", 92160 },
+				// Load 'N' Go Software release XAG-0646 appears to be missing the second disk
+				{ "ULYS2C.XFD", 0, "00000000000000000000000000000000", 92160 },
 				AD_LISTEND
 			},
 			Common::EN_ANY,
-			Common::kPlatformAtariST, // FIXME
+			Common::kPlatformAtari8Bit,
 			ADGF_UNSTABLE,
 			GUIO2(GAMEOPTION_COLOR_DEFAULT_ON, GAMEOPTION_SCANLINES)
 		},
diff --git a/engines/adl/hires4.cpp b/engines/adl/hires4.cpp
index ddfc868..3775a2d 100644
--- a/engines/adl/hires4.cpp
+++ b/engines/adl/hires4.cpp
@@ -261,7 +261,7 @@ void HiRes4Engine_Atari::adjustDataBlockPtr(byte &track, byte &sector, byte &off
 
 Engine *HiRes4Engine_create(OSystem *syst, const AdlGameDescription *gd) {
 	switch (gd->desc.platform) {
-	case Common::kPlatformAtariST:
+	case Common::kPlatformAtari8Bit:
 		return new HiRes4Engine_Atari(syst, gd);
 	default:
 		error("Unsupported platform");





More information about the Scummvm-git-logs mailing list