diff options
Diffstat (limited to 'engines/drascula/detection.cpp')
-rw-r--r-- | engines/drascula/detection.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp index 9a2da1d732..ceaadd5088 100644 --- a/engines/drascula/detection.cpp +++ b/engines/drascula/detection.cpp @@ -300,7 +300,7 @@ static const DrasculaGameDescription gameDescriptions[] = { static const ExtraGuiOption drasculaExtraGuiOption = { _s("Use original save/load screens"), - _s("Use the original save/load screens, instead of the ScummVM ones"), + _s("Use the original save/load screens instead of the ScummVM ones"), "originalsaveload", false }; @@ -310,8 +310,8 @@ SaveStateDescriptor loadMetaData(Common::ReadStream *s, int slot, bool setPlayTi class DrasculaMetaEngine : public AdvancedMetaEngine { public: DrasculaMetaEngine() : AdvancedMetaEngine(Drascula::gameDescriptions, sizeof(Drascula::DrasculaGameDescription), drasculaGames) { - _singleid = "drascula"; - _guioptions = GUIO1(GUIO_NOMIDI); + _singleId = "drascula"; + _guiOptions = GUIO1(GUIO_NOMIDI); } virtual const char *getName() const { @@ -339,7 +339,8 @@ bool DrasculaMetaEngine::hasFeature(MetaEngineFeature f) const { (f == kSavesSupportMetaInfo) || (f == kSavesSupportThumbnail) || (f == kSavesSupportCreationDate) || - (f == kSavesSupportPlayTime); + (f == kSavesSupportPlayTime) || + (f == kSimpleSavesNames); } const ExtraGuiOptions DrasculaMetaEngine::getExtraGuiOptions(const Common::String &target) const { |