XEEN: Fix showing savegame meta info

This commit is contained in:
Paul Gilbert 2018-01-14 18:13:12 -05:00
parent 1b50b3af31
commit 269ab8841d

View File

@ -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 {