aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2008-09-01 18:14:55 +0000
committerJohannes Schickel2008-09-01 18:14:55 +0000
commit8c58e27ab1618afa8f0e057442ad9a86243c4ed2 (patch)
tree903db67fba004f8f7487d331eb6dcb47759c461e
parentdcd52c1210506128ee659f3bda0bd40c85a2959e (diff)
downloadscummvm-rg350-8c58e27ab1618afa8f0e057442ad9a86243c4ed2.tar.gz
scummvm-rg350-8c58e27ab1618afa8f0e057442ad9a86243c4ed2.tar.bz2
scummvm-rg350-8c58e27ab1618afa8f0e057442ad9a86243c4ed2.zip
Cleanup.
svn-id: r34248
-rw-r--r--engines/kyra/detection.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/kyra/detection.cpp b/engines/kyra/detection.cpp
index e3006f3180..c19db16d36 100644
--- a/engines/kyra/detection.cpp
+++ b/engines/kyra/detection.cpp
@@ -1064,9 +1064,9 @@ public:
return "The Legend of Kyrandia (C) Westwood Studios";
}
- virtual bool hasFeature(MetaEngineFeature f) const;
- virtual bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const;
- virtual SaveStateList listSaves(const char *target) const;
+ bool hasFeature(MetaEngineFeature f) const;
+ bool createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const;
+ SaveStateList listSaves(const char *target) const;
};
bool KyraMetaEngine::hasFeature(MetaEngineFeature f) const {
@@ -1152,3 +1152,4 @@ SaveStateList KyraMetaEngine::listSaves(const char *target) const {
#else
REGISTER_PLUGIN_STATIC(KYRA, PLUGIN_TYPE_ENGINE, KyraMetaEngine);
#endif
+