diff options
author | Alexander Tkachev | 2016-06-07 19:33:00 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | ab1d160ec8f99e472667b83aa4bdd7697b702f3a (patch) | |
tree | 7b52ca273b683c485ce59a85b8722a6f43ba8014 /engines/fullpipe | |
parent | bf71ba9a1c98b39647edb248e913322ee38a0af5 (diff) | |
download | scummvm-rg350-ab1d160ec8f99e472667b83aa4bdd7697b702f3a.tar.gz scummvm-rg350-ab1d160ec8f99e472667b83aa4bdd7697b702f3a.tar.bz2 scummvm-rg350-ab1d160ec8f99e472667b83aa4bdd7697b702f3a.zip |
ALL: Add MetaEngine::simpleSaveNames()
Engines with "simple" savenames would support "Run in background" in
save/load dialog and gradual save slots unlocking. Other engines
save/load feature would be locked until save sync is over.
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/detection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/detection.cpp b/engines/fullpipe/detection.cpp index 6f92f19f24..a183be8a83 100644 --- a/engines/fullpipe/detection.cpp +++ b/engines/fullpipe/detection.cpp @@ -90,6 +90,7 @@ public: virtual bool hasFeature(MetaEngineFeature f) const; virtual int getMaximumSaveSlot() const { return 8; } virtual SaveStateList listSaves(const char *target) const; + virtual bool simpleSaveNames() const; virtual void removeSaveState(const char *target, int slot) const; virtual SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const; virtual bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const; @@ -134,6 +135,8 @@ SaveStateList FullpipeMetaEngine::listSaves(const char *target) const { return saveList; } +bool FullpipeMetaEngine::simpleSaveNames() const { return false; } + void FullpipeMetaEngine::removeSaveState(const char *target, int slot) const { g_system->getSavefileManager()->removeSavefile(Fullpipe::getSavegameFile(slot)); } |