diff options
author | Eugene Sandulenko | 2016-09-27 18:32:52 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-09-27 18:32:52 +0200 |
commit | b783f0b528b3ea3127c19a561d2e5b9f66788f79 (patch) | |
tree | eff90106f87d195168ac2bc1d37244842d905d67 | |
parent | 37f4b36f7f0f855103962c169d9753df988c1c82 (diff) | |
download | scummvm-rg350-b783f0b528b3ea3127c19a561d2e5b9f66788f79.tar.gz scummvm-rg350-b783f0b528b3ea3127c19a561d2e5b9f66788f79.tar.bz2 scummvm-rg350-b783f0b528b3ea3127c19a561d2e5b9f66788f79.zip |
FULLPIPE: Mark that the engine has simple save names
-rw-r--r-- | engines/fullpipe/detection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/fullpipe/detection.cpp b/engines/fullpipe/detection.cpp index 6f92f19f24..31645dd38a 100644 --- a/engines/fullpipe/detection.cpp +++ b/engines/fullpipe/detection.cpp @@ -102,7 +102,8 @@ bool FullpipeMetaEngine::hasFeature(MetaEngineFeature f) const { (f == kSavesSupportMetaInfo) || (f == kSavesSupportThumbnail) || (f == kSavesSupportCreationDate) || - (f == kSupportsLoadingDuringStartup); + (f == kSupportsLoadingDuringStartup) || + (f == kSimpleSavesNames); } SaveStateList FullpipeMetaEngine::listSaves(const char *target) const { |