diff options
author | strangerke | 2011-05-13 23:25:57 +0200 |
---|---|---|
committer | strangerke | 2011-05-13 23:27:43 +0200 |
commit | 2fdfad12cc1049cb38edfb52ab9c95bbc523d4e2 (patch) | |
tree | 461db86170e713741c5520b3800a237e1edc6b6d | |
parent | 5fc5265b0d777744e8ff65305ddf0cf2da043204 (diff) | |
download | scummvm-rg350-2fdfad12cc1049cb38edfb52ab9c95bbc523d4e2.tar.gz scummvm-rg350-2fdfad12cc1049cb38edfb52ab9c95bbc523d4e2.tar.bz2 scummvm-rg350-2fdfad12cc1049cb38edfb52ab9c95bbc523d4e2.zip |
TSAGE: Add detection for some versions of Blue Force
-rw-r--r-- | engines/tsage/detection_tables.h | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/engines/tsage/detection_tables.h b/engines/tsage/detection_tables.h index 6de2d122a5..dc55f2a66d 100644 --- a/engines/tsage/detection_tables.h +++ b/engines/tsage/detection_tables.h @@ -109,7 +109,34 @@ static const tSageGameDescription gameDescriptions[] = { GType_BlueForce, GF_FLOPPY }, - + // Blue Force floppy + { + { + "blueforce", + "Floppy", + AD_ENTRY1s("blue.rlb", "17c3993415e8a2cf93040eef7e88ec93", 1156508), + Common::EN_ANY, + Common::kPlatformPC, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_BlueForce, + GF_FLOPPY + }, + // Blue Force CD and First Wave use the same files + { + { + "blueforce", + "CD", + AD_ENTRY1s("blue.rlb", "ac29f38184cb3b874ea18523059872ba", 63863322), + Common::EN_ANY, + Common::kPlatformPC, + ADGF_NO_FLAGS, + Common::GUIO_NONE + }, + GType_BlueForce, + GF_CD + }, { AD_TABLE_END_MARKER, 0, 0 } }; |