diff options
| author | Max Horn | 2008-10-04 13:09:01 +0000 |
|---|---|---|
| committer | Max Horn | 2008-10-04 13:09:01 +0000 |
| commit | b41cd58cee80ae682d6806fc448ca6772fd8ef61 (patch) | |
| tree | bbde0b7da9b77fb704c454c0592fe27f2a825f75 /gui | |
| parent | 8706081b82f54dae944f3b75639415330c2cdef2 (diff) | |
| download | scummvm-rg350-b41cd58cee80ae682d6806fc448ca6772fd8ef61.tar.gz scummvm-rg350-b41cd58cee80ae682d6806fc448ca6772fd8ef61.tar.bz2 scummvm-rg350-b41cd58cee80ae682d6806fc448ca6772fd8ef61.zip | |
Renamed some MetaEngine feature flags; removed explicit numbers from this feature flag list (nothing should rely on their specific values, anyway); added a note that Engine::hasFeature should become independant of MetaEngine::hasFeature
svn-id: r34738
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/launcher.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index c37a412440..c4b0a9bd6a 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -554,10 +554,10 @@ int SaveLoadChooser::runModal(const EnginePlugin *plugin, const String &target) _plugin = plugin; _target = target; _delSupport = (*_plugin)->hasFeature(MetaEngine::kSupportsDeleteSave); - _metaInfoSupport = (*_plugin)->hasFeature(MetaEngine::kSupportsMetaInfos); - _thumbnailSupport = _metaInfoSupport && (*_plugin)->hasFeature(MetaEngine::kSupportsThumbnails); - _saveDateSupport = _metaInfoSupport && (*_plugin)->hasFeature(MetaEngine::kSupportsSaveDate); - _playTimeSupport = _metaInfoSupport && (*_plugin)->hasFeature(MetaEngine::kSupportsSavePlayTime); + _metaInfoSupport = (*_plugin)->hasFeature(MetaEngine::kSavesSupportMetaInfo); + _thumbnailSupport = _metaInfoSupport && (*_plugin)->hasFeature(MetaEngine::kSavesSupportThumbnail); + _saveDateSupport = _metaInfoSupport && (*_plugin)->hasFeature(MetaEngine::kSavesSupportCreationDate); + _playTimeSupport = _metaInfoSupport && (*_plugin)->hasFeature(MetaEngine::kSavesSupportPlayTime); reflowLayout(); updateSaveList(); |
