aboutsummaryrefslogtreecommitdiff
path: root/engines/griffon/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/griffon/detection.cpp')
-rw-r--r--engines/griffon/detection.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/griffon/detection.cpp b/engines/griffon/detection.cpp
index e19530ba9a..dae37f201c 100644
--- a/engines/griffon/detection.cpp
+++ b/engines/griffon/detection.cpp
@@ -81,6 +81,13 @@ bool GriffonMetaEngine::hasFeature(MetaEngineFeature f) const {
(f == kSavesUseExtendedFormat);
}
+bool Griffon::GriffonEngine::hasFeature(EngineFeature f) const {
+ return
+ (f == kSupportsRTL) ||
+ (f == kSupportsLoadingDuringRuntime) ||
+ (f == kSupportsSavingDuringRuntime);
+}
+
bool GriffonMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
if (desc)
*engine = new Griffon::GriffonEngine(syst);