diff options
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/detection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index 2b9f3b49fa..d37bd0775e 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -140,6 +140,7 @@ public: virtual bool hasFeature(MetaEngineFeature f) const; virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const; virtual SaveStateList listSaves(const char *target) const; + virtual int getMaximumSaveSlot() const; virtual void removeSaveState(const char *target, int slot) const; }; @@ -214,6 +215,8 @@ SaveStateList ToucheMetaEngine::listSaves(const char *target) const { return saveList; } +int ToucheMetaEngine::getMaximumSaveSlot() const { return 99; } + void ToucheMetaEngine::removeSaveState(const char *target, int slot) const { char extension[5]; snprintf(extension, sizeof(extension), ".%d", slot); |