aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
authorChristopher Page2008-08-15 18:15:14 +0000
committerChristopher Page2008-08-15 18:15:14 +0000
commit9d3cdcb2da64ae3afdcd19f1ea18a917f9318190 (patch)
tree2d49249deec6d26bd875a5bbe1e8b8a3946bfec7 /engines/saga
parent5bc5855ae9148672b242bd99f3faf5e7ede93ac8 (diff)
downloadscummvm-rg350-9d3cdcb2da64ae3afdcd19f1ea18a917f9318190.tar.gz
scummvm-rg350-9d3cdcb2da64ae3afdcd19f1ea18a917f9318190.tar.bz2
scummvm-rg350-9d3cdcb2da64ae3afdcd19f1ea18a917f9318190.zip
Defined some MetaEngineFeatures for the engines, the launcher uses these features to allow/disallow loading and deleting saves
svn-id: r33909
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/detection.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp
index 3ed3882b06..16ac3d7fb4 100644
--- a/engines/saga/detection.cpp
+++ b/engines/saga/detection.cpp
@@ -147,10 +147,18 @@ public:
return "Inherit the Earth (C) Wyrmkeep Entertainment";
}
+ virtual bool hasFeature(MetaEngineFeature f) const;
virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const;
virtual SaveStateList listSaves(const char *target) const;
};
+bool SagaMetaEngine::hasFeature(MetaEngineFeature f) const {
+ return
+ (f == kSupportsListSaves) ||
+ (f == kSupportsDirectLoad) ||
+ (f == kSupportsDeleteSave);
+}
+
bool SagaMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const {
const Saga::SAGAGameDescription *gd = (const Saga::SAGAGameDescription *)desc;
if (gd) {