diff options
| author | Alexander Tkachev | 2016-07-25 14:32:04 +0600 |
|---|---|---|
| committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
| commit | b665fc933d7d1c9e32820e5a3f24d0e3456a0ff7 (patch) | |
| tree | e98f6ad4dbe2100bed8b328014a89c6080c1e5b8 /engines/adl | |
| parent | b8fae56c6733cdb5f6e4f64266ca61105eb3155d (diff) | |
| download | scummvm-rg350-b665fc933d7d1c9e32820e5a3f24d0e3456a0ff7.tar.gz scummvm-rg350-b665fc933d7d1c9e32820e5a3f24d0e3456a0ff7.tar.bz2 scummvm-rg350-b665fc933d7d1c9e32820e5a3f24d0e3456a0ff7.zip | |
ALL: Make simpleSaveNames() a MetaEngineFeature
Added it into hasFeature() of all engines which returned `true` in
simpleSaveNames() before.
As mentioned in #788, SCI is not always using simple names, so it
doesn't have such feature now.
Diffstat (limited to 'engines/adl')
| -rw-r--r-- | engines/adl/detection.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp index 7031a58ec4..af51f95fe7 100644 --- a/engines/adl/detection.cpp +++ b/engines/adl/detection.cpp @@ -175,7 +175,6 @@ public: SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const; int getMaximumSaveSlot() const { return 'O' - 'A'; } SaveStateList listSaves(const char *target) const; - virtual bool simpleSaveNames() const; void removeSaveState(const char *target, int slot) const; bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *gd) const; @@ -190,6 +189,7 @@ bool AdlMetaEngine::hasFeature(MetaEngineFeature f) const { case kSavesSupportThumbnail: case kSavesSupportCreationDate: case kSavesSupportPlayTime: + case kSimpleSavesNames: return true; default: return false; @@ -290,8 +290,6 @@ SaveStateList AdlMetaEngine::listSaves(const char *target) const { return saveList; } -bool AdlMetaEngine::simpleSaveNames() const { return true; } - void AdlMetaEngine::removeSaveState(const char *target, int slot) const { Common::String fileName = Common::String::format("%s.s%02d", target, slot); g_system->getSavefileManager()->removeSavefile(fileName); |
