diff options
author | Alyssa Milburn | 2016-04-03 22:19:29 +0200 |
---|---|---|
committer | Walter van Niftrik | 2016-06-06 20:35:49 +0200 |
commit | 5db8f401a89b89f763dc8eb949a1db81f4e3fa90 (patch) | |
tree | 7b931b1f14d342563fd60b7244d9100d7cbd6836 /engines/adl | |
parent | d361f2e4b09fee1b36c4c3c4c8715497990e6e26 (diff) | |
download | scummvm-rg350-5db8f401a89b89f763dc8eb949a1db81f4e3fa90.tar.gz scummvm-rg350-5db8f401a89b89f763dc8eb949a1db81f4e3fa90.tar.bz2 scummvm-rg350-5db8f401a89b89f763dc8eb949a1db81f4e3fa90.zip |
ADL: Add detection entry for hires0
Diffstat (limited to 'engines/adl')
-rw-r--r-- | engines/adl/detection.cpp | 17 | ||||
-rw-r--r-- | engines/adl/detection.h | 1 |
2 files changed, 17 insertions, 1 deletions
diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp index 457db2ded0..0a8a98f248 100644 --- a/engines/adl/detection.cpp +++ b/engines/adl/detection.cpp @@ -71,6 +71,7 @@ static const ADExtraGuiOptionsMap optionsList[] = { }; static const PlainGameDescriptor adlGames[] = { + { "hires0", "Hi-Res Adventure #0: Mission Asteroid" }, { "hires1", "Hi-Res Adventure #1: Mystery House" }, { "hires2", "Hi-Res Adventure #2: Wizard and the Princess" }, { 0, 0 } @@ -107,7 +108,7 @@ static const AdlGameDescription gameDescriptions[] = { }, GAME_TYPE_HIRES1 }, - { // Hi-Res Adventure #2: Wizard and the Princess - Apple II - 1986 SierraVenture release + { // Hi-Res Adventure #2: Wizard and the Princess - Apple II - Roberta Williams Anthology { "hires2", 0, { @@ -121,6 +122,20 @@ static const AdlGameDescription gameDescriptions[] = { }, GAME_TYPE_HIRES2 }, + { // Hi-Res Adventure #0: Mission Asteroid - Apple II - Roberta Williams Anthology + { + "hires0", 0, + { + { "MISSION.NIB", 0, "b158f6f79681d4edd651e1932f9e01d7", 232960 }, + AD_LISTEND + }, + Common::EN_ANY, + Common::kPlatformApple2GS, // FIXME + ADGF_UNSTABLE, + GUIO2(GAMEOPTION_MONO, GAMEOPTION_SCANLINES) + }, + GAME_TYPE_HIRES0 + }, { AD_TABLE_END_MARKER, GAME_TYPE_NONE } }; diff --git a/engines/adl/detection.h b/engines/adl/detection.h index 42752869f5..bd01529abc 100644 --- a/engines/adl/detection.h +++ b/engines/adl/detection.h @@ -32,6 +32,7 @@ namespace Adl { enum GameType { GAME_TYPE_NONE, + GAME_TYPE_HIRES0, GAME_TYPE_HIRES1, GAME_TYPE_HIRES2 }; |