Fixed the EngineFeature vs. MetaEngineFeature mess, clarified some EngineFeature comments

svn-id: r34896
This commit is contained in:
Max Horn 2008-11-04 16:11:40 +00:00
parent 70679e6895
commit 61aadb378d
32 changed files with 193 additions and 142 deletions

View file

@ -691,7 +691,6 @@ public:
bool ScummMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
(f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave) ||
@ -701,6 +700,10 @@ bool ScummMetaEngine::hasFeature(MetaEngineFeature f) const {
(f == kSavesSupportPlayTime);
}
bool ScummEngine::hasFeature(EngineFeature f) const {
return (f == kSupportsRTL);
}
GameList ScummMetaEngine::getSupportedGames() const {
return GameList(gameDescriptions);
}