aboutsummaryrefslogtreecommitdiff
path: root/engines/metaengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/metaengine.h')
-rw-r--r--engines/metaengine.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/metaengine.h b/engines/metaengine.h
index 3a9f930eec..fc75344f00 100644
--- a/engines/metaengine.h
+++ b/engines/metaengine.h
@@ -115,7 +115,9 @@ public:
* @param target name of a config manager target
* @param slot slot number of the save state
*/
- virtual SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const { return SaveStateDescriptor(); }
+ virtual SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const {
+ return SaveStateDescriptor();
+ }
/** @name MetaEngineFeature flags */
//@{
@@ -177,7 +179,9 @@ public:
* Determine whether the engine supports the specified MetaEngine feature.
* Used by e.g. the launcher to determine whether to enable the "Load" button.
*/
- virtual bool hasFeature(MetaEngineFeature f) const { return false; };
+ virtual bool hasFeature(MetaEngineFeature f) const {
+ return false;
+ }
//@}
};