aboutsummaryrefslogtreecommitdiff
path: root/engines/metaengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/metaengine.h')
-rw-r--r--engines/metaengine.h28
1 files changed, 13 insertions, 15 deletions
diff --git a/engines/metaengine.h b/engines/metaengine.h
index 6afb122580..568b66ac51 100644
--- a/engines/metaengine.h
+++ b/engines/metaengine.h
@@ -116,20 +116,6 @@ public:
}
/**
- * Return whether engine's saves could be detected with
- * "<target>.###" pattern and "###" corresponds to slot
- * number.
- *
- * If that's not true or engine is using some unusual way
- * of detecting saves and slot numbers, this should return
- * false. In that case Save/Load dialog would be unavailable
- * during cloud saves sync.
- *
- * @return true, if "<target>.###" is OK for this engine
- */
- virtual bool simpleSaveNames() const { return false; }
-
- /**
* Return a list of extra GUI options for the specified target.
* If no target is specified, all of the available custom GUI options are
* Returned for the plugin (used to set default values).
@@ -250,7 +236,19 @@ public:
* the game till the save.
* This flag may only be set when 'kSavesSupportMetaInfo' is set.
*/
- kSavesSupportPlayTime
+ kSavesSupportPlayTime,
+
+ /**
+ * Feature is available if engine's saves could be detected
+ * with "<target>.###" pattern and "###" corresponds to slot
+ * number.
+ *
+ * If that's not true or engine is using some unusual way
+ * of detecting saves and slot numbers, this should be
+ * unavailable. In that case Save/Load dialog for engine's
+ * games is locked during cloud saves sync.
+ */
+ kSimpleSavesNames
};
/**