NANCY: Use checkExtendedSaves()

This commit is contained in:
Eugene Sandulenko 2022-11-27 14:37:05 +01:00
parent aeb10c7208
commit cbc6ee42ff
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -50,15 +50,8 @@ Common::KeymapArray NancyMetaEngine::initKeymaps(const char *target) const {
bool NancyMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsListSaves) ||
(f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave) ||
(f == kSavesSupportMetaInfo) ||
(f == kSavesSupportThumbnail) ||
(f == kSavesSupportCreationDate) ||
(f == kSavesSupportPlayTime) ||
(f == kSimpleSavesNames) ||
(f == kSavesUseExtendedFormat);
checkExtendedSaves(f);
}
Common::Error NancyMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *gd) const {