aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2008-06-02 18:38:50 +0000
committerEugene Sandulenko2008-06-02 18:38:50 +0000
commit945b92501a41b39d231bcec78df5aac5e41b1c33 (patch)
tree1281cb2c9d5b7cdc3402c2164c87fcd7c6b85566 /engines
parent72e3cee9d41dcf70508b596700018d35f2f490a2 (diff)
downloadscummvm-rg350-945b92501a41b39d231bcec78df5aac5e41b1c33.tar.gz
scummvm-rg350-945b92501a41b39d231bcec78df5aac5e41b1c33.tar.bz2
scummvm-rg350-945b92501a41b39d231bcec78df5aac5e41b1c33.zip
Simplified detection table
svn-id: r32500
Diffstat (limited to 'engines')
-rw-r--r--engines/drascula/detection.cpp26
1 files changed, 7 insertions, 19 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp
index 754c782bb1..a426857fbd 100644
--- a/engines/drascula/detection.cpp
+++ b/engines/drascula/detection.cpp
@@ -35,12 +35,10 @@ namespace Drascula {
struct DrasculaGameDescription {
Common::ADGameDescription desc;
-
- uint32 features;
};
uint32 DrasculaEngine::getFeatures() const {
- return _gameDescription->features;
+ return _gameDescription->desc.flags;
}
Common::Language DrasculaEngine::getLanguage() const {
@@ -80,7 +78,6 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::kPlatformPC,
Common::ADGF_NO_FLAGS
},
- 0,
},
{
@@ -91,9 +88,8 @@ static const DrasculaGameDescription gameDescriptions[] = {
AD_ENTRY1s("packet.001", "c6a8697396e213a18472542d5f547cb4", 32847563),
Common::EN_ANY,
Common::kPlatformPC,
- Common::ADGF_KEEPMATCH
+ Common::ADGF_KEEPMATCH | GF_PACKED
},
- GF_PACKED,
},
{
@@ -108,9 +104,8 @@ static const DrasculaGameDescription gameDescriptions[] = {
},
Common::DE_DEU,
Common::kPlatformPC,
- Common::ADGF_NO_FLAGS
+ GF_PACKED
},
- GF_PACKED,
},
{
@@ -125,9 +120,8 @@ static const DrasculaGameDescription gameDescriptions[] = {
},
Common::FR_FRA,
Common::kPlatformPC,
- Common::ADGF_NO_FLAGS
+ GF_PACKED
},
- GF_PACKED,
},
{
@@ -138,9 +132,8 @@ static const DrasculaGameDescription gameDescriptions[] = {
AD_ENTRY1s("packet.001", "3c971aba65a037d29d0b479cad6f5943", 31702652),
Common::ES_ESP,
Common::kPlatformPC,
- Common::ADGF_NO_FLAGS
+ GF_PACKED
},
- GF_PACKED,
},
{
@@ -153,7 +146,6 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::kPlatformPC,
Common::ADGF_NO_FLAGS
},
- 0,
},
{
@@ -166,7 +158,6 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::kPlatformPC,
Common::ADGF_NO_FLAGS
},
- 0,
},
{
@@ -179,7 +170,6 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::kPlatformPC,
Common::ADGF_NO_FLAGS
},
- 0,
},
{
@@ -190,9 +180,8 @@ static const DrasculaGameDescription gameDescriptions[] = {
AD_ENTRY1s("packet.001", "0253e924af223f5fe52537023385159b", 32564209),
Common::IT_ITA,
Common::kPlatformPC,
- Common::ADGF_NO_FLAGS
+ GF_PACKED
},
- GF_PACKED,
},
{
// Drascula Italian version
@@ -204,10 +193,9 @@ static const DrasculaGameDescription gameDescriptions[] = {
Common::kPlatformPC,
Common::ADGF_NO_FLAGS
},
- 0,
},
- { AD_TABLE_END_MARKER, 0, }
+ { AD_TABLE_END_MARKER }
};
} // End of namespace Drascula