diff options
Diffstat (limited to 'engines/sherlock')
-rw-r--r-- | engines/sherlock/detection.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sherlock/detection.cpp b/engines/sherlock/detection.cpp index 5a94b3485f..f54c6db952 100644 --- a/engines/sherlock/detection.cpp +++ b/engines/sherlock/detection.cpp @@ -159,6 +159,8 @@ public: */ virtual SaveStateList listSaves(const char *target) const; + virtual bool simpleSaveNames() const; + /** * Returns the maximum number of allowed save slots */ @@ -217,6 +219,8 @@ SaveStateList SherlockMetaEngine::listSaves(const char *target) const { return Sherlock::SaveManager::getSavegameList(target); } +bool SherlockMetaEngine::simpleSaveNames() const { return true; } + int SherlockMetaEngine::getMaximumSaveSlot() const { return MAX_SAVEGAME_SLOTS; } |