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 /engines/engine.h | |
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 'engines/engine.h')
-rw-r--r-- | engines/engine.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/engine.h b/engines/engine.h index 148e4f24c6..2bc44ab415 100644 --- a/engines/engine.h +++ b/engines/engine.h @@ -178,6 +178,10 @@ public: /** * Determine whether the engine supports the specified MetaEngine feature. + * + * FIXME: This should not call through to the MetaEngine, but rather should support + * its own list of features. In particular, kSupportsRTL should be an EngineFeature, + * not a MetaEngineFeature. */ bool hasFeature(MetaEngine::MetaEngineFeature f); |