aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorVladimir Menshakov2011-06-15 00:44:10 +0400
committerAlyssa Milburn2011-06-15 17:35:03 +0200
commitc760405a4ee846275c1c191867ff57cb4e8dd8d3 (patch)
tree0b2de2cdeb872216e209381bf8e8907b941b57b4 /engines
parent1cafd2de983210fec07267cbb4d261affd4a33f4 (diff)
downloadscummvm-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.cpp9
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 {