diff options
author | Walter van Niftrik | 2016-09-15 21:27:02 +0200 |
---|---|---|
committer | Walter van Niftrik | 2016-09-15 21:29:17 +0200 |
commit | 6e8d69524e8e527ba6e24954273823e249fb8ee8 (patch) | |
tree | e3111cfa955cc32074add5cb84cc058064264259 | |
parent | 0f955b40d7eaa259416ca6fb77f326fe2b98f387 (diff) | |
download | scummvm-rg350-6e8d69524e8e527ba6e24954273823e249fb8ee8.tar.gz scummvm-rg350-6e8d69524e8e527ba6e24954273823e249fb8ee8.tar.bz2 scummvm-rg350-6e8d69524e8e527ba6e24954273823e249fb8ee8.zip |
ADL: Add md5sum for hires4-atari disk side 1B
-rw-r--r-- | engines/adl/detection.cpp | 6 | ||||
-rw-r--r-- | engines/adl/hires4.cpp | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp index 10812d79ea..5cd7cca02d 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 ddfc868e9a..3775a2d1eb 100644 --- a/engines/adl/hires4.cpp +++ b/engines/adl/hires4.cpp @@ -261,7 +261,7 @@ void HiRes4Engine_Atari::adjustDataBlockPtr(byte &track, byte §or, 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"); |