aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/voyeur/detection.cpp')
-rw-r--r--engines/voyeur/detection.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/voyeur/detection.cpp b/engines/voyeur/detection.cpp
index 7b9fa6722e..76668eb370 100644
--- a/engines/voyeur/detection.cpp
+++ b/engines/voyeur/detection.cpp
@@ -81,6 +81,7 @@ public:
virtual bool hasFeature(MetaEngineFeature f) const;
virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) 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;
SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const;
@@ -143,6 +144,8 @@ SaveStateList VoyeurMetaEngine::listSaves(const char *target) const {
return saveList;
}
+bool VoyeurMetaEngine::simpleSaveNames() const { return true; }
+
int VoyeurMetaEngine::getMaximumSaveSlot() const {
return MAX_SAVES;
}