aboutsummaryrefslogtreecommitdiff
path: root/engines/access/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/access/detection.cpp')
-rw-r--r--engines/access/detection.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/access/detection.cpp b/engines/access/detection.cpp
index 435f0d1118..3e70de3635 100644
--- a/engines/access/detection.cpp
+++ b/engines/access/detection.cpp
@@ -100,7 +100,6 @@ 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;
@@ -112,7 +111,8 @@ bool AccessMetaEngine::hasFeature(MetaEngineFeature f) const {
(f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave) ||
(f == kSavesSupportMetaInfo) ||
- (f == kSavesSupportThumbnail);
+ (f == kSavesSupportThumbnail) ||
+ (f == kSimpleSavesNames);
}
bool Access::AccessEngine::hasFeature(EngineFeature f) const {
@@ -172,8 +172,6 @@ SaveStateList AccessMetaEngine::listSaves(const char *target) const {
return saveList;
}
-bool AccessMetaEngine::simpleSaveNames() const { return true; }
-
int AccessMetaEngine::getMaximumSaveSlot() const {
return MAX_SAVES;
}