mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
HPL1: Simplify check for support of extended save files
This commit is contained in:
parent
2c05c5bdfa
commit
da98116a44
@ -41,12 +41,7 @@ Common::Error Hpl1MetaEngine::createInstance(OSystem *syst, Engine **engine, con
|
||||
}
|
||||
|
||||
bool Hpl1MetaEngine::hasFeature(MetaEngineFeature f) const {
|
||||
return (f == kSavesUseExtendedFormat) ||
|
||||
(f == kSimpleSavesNames) ||
|
||||
(f == kSupportsListSaves) ||
|
||||
(f == kSupportsDeleteSave) ||
|
||||
(f == kSavesSupportMetaInfo) ||
|
||||
(f == kSavesSupportThumbnail) ||
|
||||
return checkExtendedSaves(f) ||
|
||||
(f == kSupportsLoadingDuringStartup);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user