Fixed the EngineFeature vs. MetaEngineFeature mess, clarified some EngineFeature comments
svn-id: r34896
This commit is contained in:
parent
70679e6895
commit
61aadb378d
32 changed files with 193 additions and 142 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue