aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hopkins/detection.cpp')
-rw-r--r--engines/hopkins/detection.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/hopkins/detection.cpp b/engines/hopkins/detection.cpp
index 84af4fcdf3..041afecaa8 100644
--- a/engines/hopkins/detection.cpp
+++ b/engines/hopkins/detection.cpp
@@ -117,7 +117,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;
@@ -129,7 +128,8 @@ bool HopkinsMetaEngine::hasFeature(MetaEngineFeature f) const {
(f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave) ||
(f == kSavesSupportMetaInfo) ||
- (f == kSavesSupportThumbnail);
+ (f == kSavesSupportThumbnail) ||
+ (f == kSimpleSavesNames);
}
bool Hopkins::HopkinsEngine::hasFeature(EngineFeature f) const {
@@ -183,8 +183,6 @@ SaveStateList HopkinsMetaEngine::listSaves(const char *target) const {
return saveList;
}
-bool HopkinsMetaEngine::simpleSaveNames() const { return true; }
-
int HopkinsMetaEngine::getMaximumSaveSlot() const {
return MAX_SAVES;
}