aboutsummaryrefslogtreecommitdiff
path: root/engines/touche
diff options
context:
space:
mode:
authorJordi Vilalta Prat2008-02-08 00:02:23 +0000
committerJordi Vilalta Prat2008-02-08 00:02:23 +0000
commitc103290e2b123510e9d9eb4716ae0336a9e61ede (patch)
tree5e13c4cd5a990094696b819b852ebbfb7afd89c9 /engines/touche
parent49d0b1f91e32eda3956c0c1d8c0156ebd5854c66 (diff)
downloadscummvm-rg350-c103290e2b123510e9d9eb4716ae0336a9e61ede.tar.gz
scummvm-rg350-c103290e2b123510e9d9eb4716ae0336a9e61ede.tar.bz2
scummvm-rg350-c103290e2b123510e9d9eb4716ae0336a9e61ede.zip
Initial support for plugin types
svn-id: r30825
Diffstat (limited to 'engines/touche')
-rw-r--r--engines/touche/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp
index 828fb43c6d..2b85f9f489 100644
--- a/engines/touche/detection.cpp
+++ b/engines/touche/detection.cpp
@@ -131,6 +131,7 @@ public:
virtual const char *getName() const {
return "Touche Engine";
}
+
virtual const char *getCopyright() const {
return "Touche: The Adventures of the 5th Musketeer (C) Clipper Software";
}
@@ -138,7 +139,6 @@ public:
virtual bool createInstance(OSystem *syst, Engine **engine, const Common::EncapsulatedADGameDesc &encapsulatedDesc) const;
};
-
bool ToucheMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::EncapsulatedADGameDesc &encapsulatedDesc) const {
const Common::ADGameDescription *gd = encapsulatedDesc.realDesc;
if (gd) {
@@ -147,4 +147,4 @@ bool ToucheMetaEngine::createInstance(OSystem *syst, Engine **engine, const Comm
return gd != 0;
}
-REGISTER_PLUGIN(TOUCHE, ToucheMetaEngine);
+REGISTER_PLUGIN(TOUCHE, PLUGIN_TYPE_ENGINE, ToucheMetaEngine);