aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/detection.cpp
diff options
context:
space:
mode:
authorRobert Špalek2009-10-03 22:07:18 +0000
committerRobert Špalek2009-10-03 22:07:18 +0000
commit3035ca2fd3e5457aedb30dfc002c6bb1303fbbf4 (patch)
tree141fec42cbfc4a0446d48e3091afc0d945dd8916 /engines/draci/detection.cpp
parentc0773975f54dd862fa7d68df900236ea63a6b509 (diff)
downloadscummvm-rg350-3035ca2fd3e5457aedb30dfc002c6bb1303fbbf4.tar.gz
scummvm-rg350-3035ca2fd3e5457aedb30dfc002c6bb1303fbbf4.tar.bz2
scummvm-rg350-3035ca2fd3e5457aedb30dfc002c6bb1303fbbf4.zip
Let Ctrl-Left click behave like Right lick in Dragon History.
Also, started implementing Advanced Engine Features: - pause support - RTL support svn-id: r44575
Diffstat (limited to 'engines/draci/detection.cpp')
-rw-r--r--engines/draci/detection.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/draci/detection.cpp b/engines/draci/detection.cpp
index 37e1af6a85..3fe37ead53 100644
--- a/engines/draci/detection.cpp
+++ b/engines/draci/detection.cpp
@@ -115,7 +115,8 @@ bool DraciMetaEngine::hasFeature(MetaEngineFeature f) const {
}
bool Draci::DraciEngine::hasFeature(EngineFeature f) const {
- return false;
+ return (f == kSupportsSubtitleOptions) ||
+ (f == kSupportsRTL);
}
bool DraciMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {