diff options
author | Vladimir Menshakov | 2011-06-15 00:44:10 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:35:03 +0200 |
commit | c760405a4ee846275c1c191867ff57cb4e8dd8d3 (patch) | |
tree | 0b2de2cdeb872216e209381bf8e8907b941b57b4 /engines | |
parent | 1cafd2de983210fec07267cbb4d261affd4a33f4 (diff) | |
download | scummvm-rg350-c760405a4ee846275c1c191867ff57cb4e8dd8d3.tar.gz scummvm-rg350-c760405a4ee846275c1c191867ff57cb4e8dd8d3.tar.bz2 scummvm-rg350-c760405a4ee846275c1c191867ff57cb4e8dd8d3.zip |
DREAMWEB: ported engine to the new metaengine api
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dreamweb/detection.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/engines/dreamweb/detection.cpp b/engines/dreamweb/detection.cpp index 10ff15da11..10f727f02e 100644 --- a/engines/dreamweb/detection.cpp +++ b/engines/dreamweb/detection.cpp @@ -43,10 +43,6 @@ static const PlainGameDescriptor dreamWebGames[] = { { 0, 0 } }; -static const ADObsoleteGameID obsoleteGameIDsTable[] = { - { 0, 0, Common::kPlatformUnknown } -}; - #include "dreamweb/detection_tables.h" class DreamWebMetaEngine : public AdvancedMetaEngine { @@ -54,9 +50,8 @@ public: DreamWebMetaEngine(): AdvancedMetaEngine(DreamWeb::gameDescriptions, sizeof(DreamWeb::DreamWebGameDescription), dreamWebGames) { - params.obsoleteList = obsoleteGameIDsTable; - params.singleid = "dreamweb"; - params.guioptions = Common::GUIO_NOMIDI; + _singleid = "dreamweb"; + _guioptions = Common::GUIO_NOMIDI; } virtual const char *getName() const { |