mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 01:08:25 +00:00
XEEN: Fix showing savegame meta info
This commit is contained in:
parent
1b50b3af31
commit
269ab8841d
@ -95,11 +95,14 @@ public:
|
|||||||
|
|
||||||
bool XeenMetaEngine::hasFeature(MetaEngineFeature f) const {
|
bool XeenMetaEngine::hasFeature(MetaEngineFeature f) const {
|
||||||
return
|
return
|
||||||
(f == kSupportsListSaves) ||
|
(f == kSupportsListSaves) ||
|
||||||
(f == kSupportsLoadingDuringStartup) ||
|
(f == kSupportsLoadingDuringStartup) ||
|
||||||
(f == kSupportsDeleteSave) ||
|
(f == kSupportsDeleteSave) ||
|
||||||
(f == kSavesSupportMetaInfo) ||
|
(f == kSavesSupportMetaInfo) ||
|
||||||
(f == kSavesSupportThumbnail);
|
(f == kSavesSupportCreationDate) ||
|
||||||
|
(f == kSavesSupportPlayTime) ||
|
||||||
|
(f == kSavesSupportThumbnail) ||
|
||||||
|
(f == kSimpleSavesNames);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Xeen::XeenEngine::hasFeature(EngineFeature f) const {
|
bool Xeen::XeenEngine::hasFeature(EngineFeature f) const {
|
||||||
|
Loading…
Reference in New Issue
Block a user