diff options
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/detection.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/mads/detection.cpp b/engines/mads/detection.cpp index d5354c4883..4fb8b82eb3 100644 --- a/engines/mads/detection.cpp +++ b/engines/mads/detection.cpp @@ -155,7 +155,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; @@ -167,7 +166,8 @@ bool MADSMetaEngine::hasFeature(MetaEngineFeature f) const { (f == kSupportsLoadingDuringStartup) || (f == kSupportsDeleteSave) || (f == kSavesSupportMetaInfo) || - (f == kSavesSupportThumbnail); + (f == kSavesSupportThumbnail) || + (f == kSimpleSavesNames); } bool MADS::MADSEngine::hasFeature(EngineFeature f) const { @@ -218,8 +218,6 @@ SaveStateList MADSMetaEngine::listSaves(const char *target) const { return saveList; } -bool MADSMetaEngine::simpleSaveNames() const { return true; } - int MADSMetaEngine::getMaximumSaveSlot() const { return MAX_SAVES; } |