aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/detection.cpp
diff options
context:
space:
mode:
authorMax Horn2008-09-01 17:50:00 +0000
committerMax Horn2008-09-01 17:50:00 +0000
commit7953312bc666a32ba274e4e2e1fc513a5e36762c (patch)
treefaf4727ddea916531d5a3e26903dfefa354c78f9 /engines/gob/detection.cpp
parenta41c681d9d722a4be3d5bdfc1db5d836b1fcbf00 (diff)
parent852bc9dbb750b9995d31e70f4158c97d3758c46f (diff)
downloadscummvm-rg350-7953312bc666a32ba274e4e2e1fc513a5e36762c.tar.gz
scummvm-rg350-7953312bc666a32ba274e4e2e1fc513a5e36762c.tar.bz2
scummvm-rg350-7953312bc666a32ba274e4e2e1fc513a5e36762c.zip
Merging more of the GSoC 2008 RTL branch: GOB
svn-id: r34245
Diffstat (limited to 'engines/gob/detection.cpp')
-rw-r--r--engines/gob/detection.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp
index 85ac455c6c..2de645ad76 100644
--- a/engines/gob/detection.cpp
+++ b/engines/gob/detection.cpp
@@ -1986,9 +1986,15 @@ public:
return "Goblins Games (C) Coktel Vision";
}
+ virtual bool hasFeature(MetaEngineFeature f) const;
virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const;
};
+bool GobMetaEngine::hasFeature(MetaEngineFeature f) const {
+ return
+ (f == kSupportsRTL);
+}
+
bool GobMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const {
const Gob::GOBGameDescription *gd = (const Gob::GOBGameDescription *)desc;
if (gd) {