diff options
| -rw-r--r-- | engines/groovie/detection.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/engines/groovie/detection.cpp b/engines/groovie/detection.cpp index 52d60f4572..f52c4eb713 100644 --- a/engines/groovie/detection.cpp +++ b/engines/groovie/detection.cpp @@ -174,6 +174,7 @@ public:  	bool hasFeature(MetaEngineFeature f) const;  	SaveStateList listSaves(const char *target) const; +	int getMaximumSaveSlot() const;  	void removeSaveState(const char *target, int slot) const;  }; @@ -241,6 +242,10 @@ SaveStateList GroovieMetaEngine::listSaves(const char *target) const {  	return list;  } +int GroovieMetaEngine::getMaximumSaveSlot() const { +	return 9; +} +  void GroovieMetaEngine::removeSaveState(const char *target, int slot) const {  	if (slot < 0 || slot > 9) {  		// Invalid slot, do nothing | 
