From c103290e2b123510e9d9eb4716ae0336a9e61ede Mon Sep 17 00:00:00 2001 From: Jordi Vilalta Prat Date: Fri, 8 Feb 2008 00:02:23 +0000 Subject: Initial support for plugin types svn-id: r30825 --- engines/touche/detection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/touche') 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); -- cgit v1.2.3