diff options
author | Travis Howell | 2006-10-15 03:58:31 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-15 03:58:31 +0000 |
commit | 2f639ab4d78862be3c4ba0bfe1b951f1245f0b22 (patch) | |
tree | 39ebed02c7cb3e79eccc3ff1f413b091ea0c4e05 | |
parent | b5cbbd705a27bba26dd2a312c37578a63233ff27 (diff) | |
download | scummvm-rg350-2f639ab4d78862be3c4ba0bfe1b951f1245f0b22.tar.gz scummvm-rg350-2f639ab4d78862be3c4ba0bfe1b951f1245f0b22.tar.bz2 scummvm-rg350-2f639ab4d78862be3c4ba0bfe1b951f1245f0b22.zip |
Add AtariST version of Elvira 2
svn-id: r24331
-rw-r--r-- | engines/agos/game.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/engines/agos/game.cpp b/engines/agos/game.cpp index 84e0580b29..322abd0f31 100644 --- a/engines/agos/game.cpp +++ b/engines/agos/game.cpp @@ -202,6 +202,14 @@ static const ADGameFileDescription ELVIRA2AMIGA_GameFiles[] = { { "tbllist", GAME_TBLFILE, "177f5f2640e80ef92d1421d32de06a5e"}, }; +static const ADGameFileDescription ELVIRA2ST_GameFiles[] = { + { "gamest", GAME_BASEFILE, "1b1acd637d32bee79859b7cc9de070e7"}, + { "icon.dat", GAME_ICONFILE, "9a4eaf4df0cdf5cc85a5134150f96589"}, + { "menus.dat", GAME_MENUFILE, "a2fdc88a77c8bdffec6b36cbeda4d955"}, + { "stripped.txt", GAME_STRFILE, "41c975a9c1106cb5298a0bc3df0a266e"}, + { "tbllist", GAME_TBLFILE, "177f5f2640e80ef92d1421d32de06a5e"}, +}; + static const ADGameFileDescription ELVIRA2DOS_GameFiles[] = { { "gamepc", GAME_BASEFILE, "3313254722031b22d833a2cf45a91fd7"}, { "icon.dat", GAME_ICONFILE, "83a7278bff55c82fbb3aef92981866c9"}, @@ -782,6 +790,22 @@ static const AGOSGameDescription gameDescriptions[] = { GF_OLD_BUNDLE | GF_CRUNCHED, }, + // Elvira 2 - English Atari ST Floppy + { + { + "elvira2", + "Floppy", + ARRAYSIZE(ELVIRA2ST_GameFiles), + ELVIRA2ST_GameFiles, + Common::EN_ANY, + Common::kPlatformAtariST, + }, + + GType_ELVIRA2, + GID_ELVIRA2, + GF_OLD_BUNDLE | GF_CRUNCHED, + }, + // Elvira 2 - English DOS Floppy { { |