[Scummvm-git-logs] scummvm master -> 269ab8841d0cdfce44c4884cfda7aff18f047028

dreammaster dreammaster at scummvm.org
Mon Jan 15 00:13:21 CET 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
269ab8841d XEEN: Fix showing savegame meta info


Commit: 269ab8841d0cdfce44c4884cfda7aff18f047028
    https://github.com/scummvm/scummvm/commit/269ab8841d0cdfce44c4884cfda7aff18f047028
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-01-14T18:13:12-05:00

Commit Message:
XEEN: Fix showing savegame meta info

Changed paths:
    engines/xeen/detection.cpp


diff --git a/engines/xeen/detection.cpp b/engines/xeen/detection.cpp
index 28811c3..f59f7c8 100644
--- a/engines/xeen/detection.cpp
+++ b/engines/xeen/detection.cpp
@@ -95,11 +95,14 @@ public:
 
 bool XeenMetaEngine::hasFeature(MetaEngineFeature f) const {
 	return
-	    (f == kSupportsListSaves) ||
+		(f == kSupportsListSaves) ||
 		(f == kSupportsLoadingDuringStartup) ||
 		(f == kSupportsDeleteSave) ||
 		(f == kSavesSupportMetaInfo) ||
-		(f == kSavesSupportThumbnail);
+		(f == kSavesSupportCreationDate) ||
+		(f == kSavesSupportPlayTime) ||
+		(f == kSavesSupportThumbnail) ||
+		(f == kSimpleSavesNames);
 }
 
 bool Xeen::XeenEngine::hasFeature(EngineFeature f) const {





More information about the Scummvm-git-logs mailing list