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.
This commit is contained in:
parent
bf71ba9a1c
commit
ab1d160ec8
52 changed files with 171 additions and 26 deletions
|
@ -138,6 +138,7 @@ public:
|
|||
|
||||
virtual bool hasFeature(MetaEngineFeature f) const;
|
||||
SaveStateList listSaves(const char *target) const;
|
||||
virtual bool simpleSaveNames() const;
|
||||
virtual int getMaximumSaveSlot() const;
|
||||
void removeSaveState(const char *target, int slot) const;
|
||||
SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const;
|
||||
|
@ -191,6 +192,8 @@ SaveStateList LabMetaEngine::listSaves(const char *target) const {
|
|||
return saveList;
|
||||
}
|
||||
|
||||
bool LabMetaEngine::simpleSaveNames() const { return true; }
|
||||
|
||||
int LabMetaEngine::getMaximumSaveSlot() const {
|
||||
return 999;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue