diff options
author | James Brown | 2006-12-28 11:52:24 +0000 |
---|---|---|
committer | James Brown | 2006-12-28 11:52:24 +0000 |
commit | 9cc4b3d4c957bc1c04f3903f1a19527c9324de75 (patch) | |
tree | 7193703129864325cfecea28b52b048d29cd112e /engines | |
parent | 8acfe5f557e1cfed4632a796d9003f846483ed13 (diff) | |
download | scummvm-rg350-9cc4b3d4c957bc1c04f3903f1a19527c9324de75.tar.gz scummvm-rg350-9cc4b3d4c957bc1c04f3903f1a19527c9324de75.tar.bz2 scummvm-rg350-9cc4b3d4c957bc1c04f3903f1a19527c9324de75.zip |
Add a few AGI md5sums (sq1, pq1, lsl1)
svn-id: r24940
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agi/detection.cpp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/engines/agi/detection.cpp b/engines/agi/detection.cpp index 3a681989b1..5782d82468 100644 --- a/engines/agi/detection.cpp +++ b/engines/agi/detection.cpp @@ -55,6 +55,23 @@ using Common::ADGameFileDescription; using Common::ADGameDescription; using Common::File; +// Leisure Suit Larry I entries +static const ADGameFileDescription AGI_LSL1_PC_100_GameFiles[] = { + { "logdir", 0, "1fe764e66857e7f305a5f03ca3f4971d"}, + { NULL, 0, NULL} +}; + +// Space Quest I entries +static const ADGameFileDescription AGI_SQ1_PC_22_GameFiles[] = { + { "logdir", 0, "5d67630aba008ec5f7f9a6d0a00582f4"}, + { NULL, 0, NULL} +}; + +// Police Quest I entries +static const ADGameFileDescription AGI_PQ1_PC_20G_GameFiles[] = { + { "logdir", 0, "231f3e28170d6e982fc0ced4c98c5c1c"}, + { NULL, 0, NULL} +}; // Kings Quest I entries static const ADGameFileDescription AGI_KQ1_PC_20F_GameFiles[] = { @@ -128,6 +145,49 @@ static const ADGameFileDescription AGI_DDP_PC_10A_GameFiles[] = { static const AGIGameDescription gameDescriptions[] = { { + // leisure suit larry 1 : pc : 1.00 + { + "agi", + "Leisure Suit Larry 1 (PC) 1.00 [AGI 2.440]", + AGI_LSL1_PC_100_GameFiles, + Common::EN_ANY, + Common::kPlatformPC, + }, + GType_V2, + 0, + 0x2440, + }, + + { + // space quest 1 : pc : 2.2 + { + "agi", + "Space Quest 1 (PC) 2.2 [AGI 2.917]", + AGI_SQ1_PC_22_GameFiles, + Common::EN_ANY, + Common::kPlatformPC, + }, + GType_V2, + 0, + 0x2917, + }, + + { + // police quest 1 : pc : 2.0G + { + "agi", + "Police Quest 1 (PC) 2.0G [AGI 2.917]", + AGI_PQ1_PC_20G_GameFiles, + Common::EN_ANY, + Common::kPlatformPC, + }, + GType_V2, + 0, + 0x2917, + }, + + + { // kings quest 1 : pc : 2.0F { "agi", |