aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Page2008-08-16 05:40:37 +0000
committerChristopher Page2008-08-16 05:40:37 +0000
commit086e3bb963d4d91a35c0a8c879e2edb877b2d863 (patch)
tree2d3840ce40f6de78ba091363cbe4461c95e0184c
parent909b66ef54f8d6d6dfeb0fdee2aa018f2065b6c9 (diff)
downloadscummvm-rg350-086e3bb963d4d91a35c0a8c879e2edb877b2d863.tar.gz
scummvm-rg350-086e3bb963d4d91a35c0a8c879e2edb877b2d863.tar.bz2
scummvm-rg350-086e3bb963d4d91a35c0a8c879e2edb877b2d863.zip
After merging trunk, Cine doesn't crash on RTL anymore. Awesome.
svn-id: r33926
-rw-r--r--README1
-rw-r--r--engines/cine/detection.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/README b/README
index 5b0ba6e818..610440db56 100644
--- a/README
+++ b/README
@@ -988,6 +988,7 @@ Engines which currently support Returning to the Launcher are:
AGI
AGOS
+ CINE
GOB
KYRA
LURE
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp
index 7fb13fb7c3..91ef964a0b 100644
--- a/engines/cine/detection.cpp
+++ b/engines/cine/detection.cpp
@@ -539,6 +539,7 @@ public:
bool CineMetaEngine::hasFeature(MetaEngineFeature f) const {
return
+ (f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
(f == kSupportsDirectLoad);
}