aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage/detection.cpp')
-rw-r--r--engines/wage/detection.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wage/detection.cpp b/engines/wage/detection.cpp
index a27bfd7fde..1069d740f6 100644
--- a/engines/wage/detection.cpp
+++ b/engines/wage/detection.cpp
@@ -70,6 +70,7 @@ public:
virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const;
virtual bool hasFeature(MetaEngineFeature f) const;
virtual SaveStateList listSaves(const char *target) const;
+ virtual bool simpleSaveNames() const;
virtual int getMaximumSaveSlot() const;
virtual void removeSaveState(const char *target, int slot) const;
};
@@ -136,6 +137,8 @@ SaveStateList WageMetaEngine::listSaves(const char *target) const {
return saveList;
}
+bool WageMetaEngine::simpleSaveNames() const { return true; }
+
int WageMetaEngine::getMaximumSaveSlot() const { return 999; }
void WageMetaEngine::removeSaveState(const char *target, int slot) const {