From 61aadb378d654425d55b8cf9f91df4283b46de7e Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 4 Nov 2008 16:11:40 +0000 Subject: Fixed the EngineFeature vs. MetaEngineFeature mess, clarified some EngineFeature comments svn-id: r34896 --- engines/cine/detection.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'engines/cine/detection.cpp') diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp index f6aaede6b7..156cbaa805 100644 --- a/engines/cine/detection.cpp +++ b/engines/cine/detection.cpp @@ -540,11 +540,15 @@ public: bool CineMetaEngine::hasFeature(MetaEngineFeature f) const { return - (f == kSupportsRTL) || (f == kSupportsListSaves) || (f == kSupportsLoadingDuringStartup); } +bool Cine::CineEngine::hasFeature(EngineFeature f) const { + return + (f == kSupportsRTL); +} + bool CineMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const { const Cine::CINEGameDescription *gd = (const Cine::CINEGameDescription *)desc; if (gd) { -- cgit v1.2.3